PuPHPet Vagrant Debian - 不会更改提供的 Node.js 版本
PuPHPet Vagrant Debian - Won't change provisioned Node.js version
我想将我的自定义机器 (debian75-x64) 提供的 Node.js 版本从 v0.12.15 更改为 v4.5.0。 config.yml
原来是:
nodejs:
install: '1'
settings:
version: '0.12'
npm_packages:
- bower
- gulp
- grunt-cli
- browser-sync
我将其更改为:
nodejs:
install: '1'
settings:
version: '4'
npm_packages:
- bower
- gulp
- grunt-cli
- browser-sync
然后运行vagrant provision
,检查是否安装了新的节点版本。不幸的是我不断得到
$ node --version
v0.12.15
无论重新启动机器并重新配置。
我是不是想做点别的事了?
在 https://github.com/puphpet/puphpet/issues/2420 中引用 Juan:
Inside your VM delete /.puphpet-stuff/nodesource and try again.
成功了。
我想将我的自定义机器 (debian75-x64) 提供的 Node.js 版本从 v0.12.15 更改为 v4.5.0。 config.yml
原来是:
nodejs:
install: '1'
settings:
version: '0.12'
npm_packages:
- bower
- gulp
- grunt-cli
- browser-sync
我将其更改为:
nodejs:
install: '1'
settings:
version: '4'
npm_packages:
- bower
- gulp
- grunt-cli
- browser-sync
然后运行vagrant provision
,检查是否安装了新的节点版本。不幸的是我不断得到
$ node --version
v0.12.15
无论重新启动机器并重新配置。 我是不是想做点别的事了?
在 https://github.com/puphpet/puphpet/issues/2420 中引用 Juan:
Inside your VM delete /.puphpet-stuff/nodesource and try again.
成功了。