Details
-
Improvement
-
Resolution: Fixed
-
Neutral
-
0.5.0
-
None
-
-
Empty show more show less
-
Basel 41
-
1
Description
Using the build tools in a Gulp file setting (gulpfile.js) has made me realize they behave differently than other NPM packages. To use rimraf, you would do:
rimraf('light-modules');
Whereas to use our build tools, you must use the very unnatural following syntax:
new mb('node_modules', 'light-modules').build();
When it should be:
build('node_modules', 'light-modules');
Checklists
Acceptance criteria