You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
grunt.registerTask('default','Watches the project for changes, automatically builds them and runs a web server and opens default browser to preview.',['eslint','csslint','connect:dev','open:dev_browser','watch:dev']);
146
+
grunt.registerTask('build','Compiles all of the assets and copies the files to the build directory.',['clean','copy','scripts','stylesheets','compress:build']);
147
+
grunt.registerTask('build-view','Compiles all of the assets and copies the files to the build directory starts a web server and opens browser to preview app.',['clean','copy','scripts','stylesheets','compress:build','connect:build','open:build_browser','watch:build']);
148
+
grunt.registerTask('scripts','Compiles the JavaScript files.',['eslint','uglify']);
149
+
grunt.registerTask('stylesheets','Auto prefixes css and compiles the stylesheets.',['csslint','autoprefixer','cssmin']);
150
+
grunt.registerTask('lint','Run simple eslint and csslint.',['eslint','csslint']);
0 commit comments