Just cloned the repo from GitHub, ran npm install and then tried some of the tasks in the Gruntfile, but the following modules are missing from the package.json dependencies list:
webpack
webpack-dev-server
grunt-contrib-cssmin
Additionally, there are missing asset files that make two of the three uglify tasks fail; from the Gruntfile config, they are:
Presumably they were installed with bower (there is a .bowerrc file committed, but no bower.json), but excluded by the .gitignore file. It would be helpful to either add documentation on the extra packages that should be installed manually, or include a bower.json file or migrate to yarn.
Just cloned the repo from GitHub, ran
npm install
and then tried some of the tasks in the Gruntfile, but the following modules are missing from thepackage.json
dependencies list:webpack
webpack-dev-server
grunt-contrib-cssmin
Additionally, there are missing asset files that make two of the three uglify tasks fail; from the Gruntfile config, they are:
and
Presumably they were installed with bower (there is a
.bowerrc
file committed, but nobower.json
), but excluded by the.gitignore
file. It would be helpful to either add documentation on the extra packages that should be installed manually, or include abower.json
file or migrate to yarn.