gruntfile chang

This commit is contained in:
Yuri Kuznetsov
2023-01-14 10:07:03 +02:00
parent a3be63c6f1
commit c7b7848e69
+4 -3
View File
@@ -21,10 +21,10 @@
/** /**
* * `grunt` - full build; * * `grunt` - full build;
* * `grunt dev` - build only items needed for development (takes less time); * * `grunt dev` - build for development;
* * `grunt offline` - build but skip *composer install*; * * `grunt offline` - build but skip *composer install*;
* * `grunt internal` - build only libs and css; * * `grunt internal` - build only libs and css;
* * `grunt release` - full build plus upgrade packages`; * * `grunt release` - full build zipped with upgrade packages`;
* * `grunt test` - build for tests running; * * `grunt test` - build for tests running;
* * `grunt run-tests` - build and run unit and integration tests. * * `grunt run-tests` - build and run unit and integration tests.
*/ */
@@ -503,7 +503,8 @@ module.exports = grunt => {
grunt.registerTask('dev', [ grunt.registerTask('dev', [
'composer-install-dev', 'composer-install-dev',
'less', 'npm-install',
'internal',
]); ]);
grunt.registerTask('test', [ grunt.registerTask('test', [