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
The bhima build no longer minifies code properly when the UGLIFY variable is set to true. Instead the build halts with an intangible error due to not using pump().
Steps to Reproduce
Change UGLIFY to true in gulpfile.js
Run npm run app or npm run dev in the console.
Observe the output
Expected Result
The build terminates and the app starts up
Actual Result
An incomprehensible error.
Recommendation
Make pump() a dev dependency and ensure that minifcation works as expected.
The text was updated successfully, but these errors were encountered:
This commit fixes a bug in which ECMAScript 6 features were used in the
client, breaking `uglify`'s build. These features have been removed in
favor of their ES5 alternates.
The `pump` module has been added as a development dependency due to
better gulp build errors.
ClosesThird-Culture-Software#704.
This commit fixes a bug in which ECMAScript 6 features were used in the
client, breaking `uglify`'s build. These features have been removed in
favor of their ES5 alternates.
The `pump` module has been added as a development dependency due to
better gulp build errors.
ClosesThird-Culture-Software#704.
The bhima build no longer minifies code properly when the UGLIFY variable is set to
true
. Instead the build halts with an intangible error due to not using pump().Steps to Reproduce
true
ingulpfile.js
npm run app
ornpm run dev
in the console.Expected Result
The build terminates and the app starts up
Actual Result
An incomprehensible error.
Recommendation
Make
pump()
a dev dependency and ensure that minifcation works as expected.The text was updated successfully, but these errors were encountered: