
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
@netzstrategen/gulp-task-collection
Advanced tools
Commonly used Gulp tasks shared across projects.
/dist
foldernpm i @netzstrategen/gulp-task-collection
require
in project Gulpfile (see sample.gulpfile.js)package.json
(see package.json)gulp
: Default task runs (in order) fonts
, icons
, images
, styles
, scripts
and then watches for changes
gulp build
: Build assets (fonts
, icons
, images
, styles
, scripts
)
gulp build:production
: Build production-ready assets
gulp clean
: Clean /dist
folder
gulp styles
and gulp styles:production
: Sass compilation
gulp scripts
and gulp scripts:production
: JS compilation
gulp fonts
: Copy fonts to /dist
folder
gulp icons
: Generate SVG icon sprite from folder of individual SVG icons
gulp images
: Image compression and inline SVG
styles
/ scripts
task optionsOption | Effect |
---|---|
--minify | Additionally generate minified files, suffixed with .min . Defaults to true in production builds. |
--sourcemaps | Add source mappings to compiled files. Defaults to true in non-production builds. |
--fail-after-error | See section Continuous Integration below for details. |
--concat | Concatenate CSS/JS asset files into a single aggregate file. |
You can pass an options
object inside gulpPaths.scripts
/gulpPaths.styles
in your package.json
to set options for each respective task.
To not break the watch process, all tasks are continued by default, even if one of the tasks produces an error, so gulp will always exit with code 0.
Continuous Integrations and build scripts can use the flag --fail-after-error
to make gulp exit after an error with an exit code > 0. By default, --fail-after-error
is false
for both dev and production builds.
Version 3.0 introduces some changes to the behavior in v2:
concat
is now false by default for css and js. v2 was concatenating js, but not css. To keep this behavior, set gulpPaths.scripts.options.concat: true
inside your project's package.json
.--production
flag is gone. To run a build for production environments, please use the corresponding styles:production
and scripts:production
tasks.--outputStyle
flag is gone. It has been replaced by --minify
.--sourcemaps
is enabled by default for development / non-production builds.FAQs
A collection of gulp tasks.
The npm package @netzstrategen/gulp-task-collection receives a total of 49 weekly downloads. As such, @netzstrategen/gulp-task-collection popularity was classified as not popular.
We found that @netzstrategen/gulp-task-collection demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 8 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.