@grrr/gulpfile
Advanced tools
Changelog
v6.4.0 (2019-02-28)
Browserify was replaced by Rollup, due to its focus on ESM instead of CommonJS.
Note: this might be a breaking change to some projects, since having both ESM imports and CommonJS requires in the same file is not allowed anymore. In this case some JavaScript files might have to be refactored.
This...
require("./polyfills/array-from");
... becomes:
import "./polyfills/array-from";
Changelog
v6.2.0 (2019-02-15)
Uglify was re-added for the javascript:build
task in non-development.
Changelog
v6.1.0 (2019-02-15)
Gulp was upgraded to v4.0.0
and the tasks were refactored accordingly.
Changelog
v6.0.0 (2018-12-15)
The old way of specifying the Browsersync proxy is deprecated in favour of adding it via an environment variable (BROWSERSYNC_PROXY
).
This...
"app": {
"domain": "localhost.<something>.com",
"port": 443
},
... is replaced with an entry in a .env
file:
BROWSERSYNC_PROXY=localhost.<something>.com
To load the .env
from somewhere else than the root, specify it in the gulp.json
:
"dotenv": {
"file": "../../.env"
},