为什么yo webapp 生成的是gulpfile而不是gruntfile
是yeoman版本的问题吗还是配置的问题
是yeoman版本的问题吗还是配置的问题
2016-06-23
从GitHub上搬了个答案,亲测有效:
generator-webapp是用gulp而不是grunt建立的(大概是这个意思),如果想要改成gruntfile需要改写webapp内容,如下:
$ git clone https://github.com/yeoman/generator-webapp
$ cd generator-webapp
$ git checkout legacy-grunt
$ npm link # this will install dependencies and link it as the global package$ cd path/to/your/project
$ yo webapp
我也是遇到这个问题 可以用npm install generator-webapp@v0.6.2重新安装之后也没有用
举报