这是我的package.json
和Vagrantfile
:
的package.json
{
"name": "vagrant-test",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"hello": "vagrant ssh -c 'echo 1'"
},
"author": "",
"license": "MIT"
}
Vagrantfile
Vagrant.configure(2) do |config|
config.vm.box = "bento/centos-7.1"
end
当我npm run hello
时,vagrant会生成一些垃圾文件,如下所示:
我该如何解决这个问题?