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
{{ message }}
This repository has been archived by the owner on Aug 11, 2022. It is now read-only.
I encountered an error that arose from trying to gulp --production after modifying a javascript file. The error messages did not provide anything specific to the error.
Gulp-util node package needs to be added and the the bower.task.js file needs to be modified.
For others like me, who do not know how to get the error message, here is what you need to do:
Install Gulp-util
import the Gulp-util by using the following statement: var gutil = require('gulp-util');
Finally, when you are uglifying the code, attach the error handler like this: .pipe(uglify().on('error', gutil.log))
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I encountered an error that arose from trying to gulp --production after modifying a javascript file. The error messages did not provide anything specific to the error.
Gulp-util node package needs to be added and the the bower.task.js file needs to be modified.
For others like me, who do not know how to get the error message, here is what you need to do:
Install Gulp-util
import the Gulp-util by using the following statement: var gutil = require('gulp-util');
Finally, when you are uglifying the code, attach the error handler like this: .pipe(uglify().on('error', gutil.log))
The text was updated successfully, but these errors were encountered: