Socket
Socket
Sign inDemoInstall

@grrr/gulpfile

Package Overview
Dependencies
Maintainers
5
Versions
57
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@grrr/gulpfile - npm Package Versions

1
46

6.5.1

Diff

koenschaft
published 6.5.0 •

koenschaft
published 6.4.0 •

Changelog

Source

v6.4.0 (2019-02-28)

Replace Browserify by Rollup

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";
koenschaft
published 6.3.0 •

Changelog

Source

v6.3.0 (2019-02-27)

Replace Uglify by Terser

Uglify was replaced by Terser, since it supports ES6+ natively and uglify-es is no longer maintained.

koenschaft
published 6.2.2 •

koenschaft
published 6.2.1 •

koenschaft
published 6.2.0 •

Changelog

Source

v6.2.0 (2019-02-15)

Re-add Uglify for main JavaScript

Uglify was re-added for the javascript:build task in non-development.

koenschaft
published 6.1.0 •

Changelog

Source

v6.1.0 (2019-02-15)

Upgrade to Gulp v4

Gulp was upgraded to v4.0.0 and the tasks were refactored accordingly.

koenschaft
published 6.0.1 •

koenschaft
published 6.0.0 •

Changelog

Source

v6.0.0 (2018-12-15)

Replace Browsersync proxy configuration

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"
  },
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc