Bump minimatch, gulp, gulp-if, gulp-jscs, gulp-jshint and gulp-load-plugins
Bumps minimatch to 3.0.4 and updates ancestor dependencies minimatch, gulp, gulp-if, gulp-jscs, gulp-jshint and gulp-load-plugins. These dependencies need to be updated together.
Updates minimatch from 0.2.14 to 3.0.4
Commits
e46989av3.0.4ddfacbdupdate brace-expansion55ed736update package scripts and depseed8949v3.0.3ecabc57Do not throw on unfinished !( extglob patterns81edb7cv3.0.26944abfHandle extremely long and terrible patterns more gracefully8ac560ev3.0.14f3a8bcupdate tap9cf2d88Remove mentions of cache from readme- Additional commits viewable in compare view
Maintainer changes
This version was pushed to npm by isaacs, a new releaser for minimatch since your current version.
Updates gulp from 3.9.1 to 4.0.2
Release notes
Sourced from gulp's releases.
v4.0.2
Fix
- Bind src/dest/symlink to the gulp instance to support esm exports (5667666) - Ref standard-things/esm#797
Docs
- Add notes about esm support (4091bd3) - Closes #2278
- Fix the Negative Globs section & examples (3c66d95) - Closes #2297
- Remove next tag from recipes (1693a11) - Closes #2277
- Add default task wrappers to Watching Files examples to make runnable (d916276) - Closes #2322
- Fix syntax error in lastRun API docs (ea52a92) - Closes #2315
- Fix typo in Explaining Globs (5d81f42) - Closes #2326
Build
- Add node 12 to Travis & Azure (b4b5a68)
v4.0.1
Fix
- Temporary workaround for facebook/Docusaurus#257 (9f4a2e9) - Closes facebook/Docusaurus#257
Docs
- Fix error in ES2015 usage example (a4e8d48) - Closes #2099 #2100
- Add temporary notice for 4.0.0 vs 3.9.1 documentation (126423a) - Closes #2121
- Improve recipe for empty glob array (45830cf) - Closes #2122
- Reword standard to default (b065a13)
- Fix recipe typo (86acdea) - Closes #2156
- Add front-matter to each file (d693e49) - Closes #2109
- Rename "Getting Started" to "Quick Start" & update it (6a0fa00)
- Add "Creating Tasks" documentation (21b6962)
- Add "JavaScript and Gulpfiles" documentation (31adf07)
- Add "Working with Files" documentation (50fafc6)
- Add "Async Completion" documentation (ad8b568)
- Add "Explaining Globs" documentation (f8cafa0)
- Add "Using Plugins" documentation (233c3f9)
- Add "Watching Files" documentation (f3f2d9f)
- Add Table of Contents to "Getting Started" directory (a43caf2)
- Improve & fix parts of Getting Started (84b0234)
- Create and link-to a "docs missing" page for LINK_NEEDED references (2bd75d0)
- Redirect users to new Getting Started guides (53e9727)
- Temporarily reference gulp@next in Quick Start (2cecf1e)
- Fixed a capitalization typo in a heading (3d051d8) - Closes #2242
- Use h2 headers within Quick Start documentation (921312c) - Closes #2241
- Fix for nested directories references (4c2b9a7)
- Add some more cleanup for Docusaurus (6a8fd8f)
- Temporarily point LINK_NEEDED references to documentation-missing.md (df7cdcb)
- API documentation improvements based on feedback (0a68710)
... (truncated)
Changelog
Sourced from gulp's changelog.
gulp changelog
4.0.0
Task system changes
- replaced 3.x task system (orchestrator) with new task system (bach)
- removed gulp.reset
- removed 3 argument syntax for
gulp.taskgulp.taskshould only be used when you will call the task with the CLI- added
gulp.seriesandgulp.parallelmethods for composing tasks. Everything must use these now.- added single argument syntax for
gulp.taskwhich allows a named function to be used as the name of the task and task function.- added
gulp.treemethod for retrieving the task tree. Pass{ deep: true }for anarchycompatible node list.- added
gulp.registryfor setting custom registries.CLI changes
- split CLI out into a module if you want to save bandwidth/disk space. you can install the gulp CLI using either
npm install gulp -gornpm install gulp-cli -g, where gulp-cli is the smaller one (no module code included)- add
--tasks-jsonflag to CLI to dump the whole tree out for other tools to consume- added
--verifyflag to check the dependencies in package.json against the plugin blacklist.vinyl/vinyl-fs changes
- added
gulp.symlinkwhich functions exactly likegulp.dest, but symlinks instead.- added
dirModeparam togulp.destandgulp.symlinkwhich allows better control over the mode of the destination folder that is created.- globs passed to
gulp.srcwill be evaluated in order, which means this is possiblegulp.src(['*.js', '!b*.js', 'bad.js'])(exclude every JS file that starts with a b except bad.js)- performance for gulp.src has improved massively
gulp.src(['**/*', '!b.js'])will no longer eat CPU since negations happen during walking now- added
sinceoption togulp.srcwhich lets you only match files that have been modified since a certain date (for incremental builds)- fixed
gulp.srcnot following symlinks- added
overwriteoption togulp.destwhich allows you to enable or disable overwriting of existing files
Commits
069350aRelease: 4.0.2b4b5a68Build: Add node 12 to Travis & Azure5667666Fix: Bind src/dest/symlink to the gulp instance to support esm exports (ref s...4091bd3Docs: Add notes about esm support (closes #2278)3c66d95Docs: Fix the Negative Globs section & examples (closes #2297)1693a11Docs: Remove next tag from recipes (closes #2277)d916276Docs: Add default task wrappers to Watching Files examples to make runnable (...ea52a92Docs: Fix syntax error in lastRun API docs (closes #2315)5d81f42Docs: Fix typo in Explaining Globs (#2326)ea3bba4Release: 4.0.1- Additional commits viewable in compare view
Updates gulp-if from 1.2.5 to 3.0.0
Commits
- See full diff in compare view
Updates gulp-jscs from 2.0.0 to 4.1.0
Release notes
Sourced from gulp-jscs's releases.
4.0.0
Upgrade to JSCS 3.
3.0.0
Reporters are now supported. The main
jscs()function will no longer report anything.You can also no longer pass JSCS config into
jscs(). JSCS config should be in an external file so other tools can also make use of it.It will now automatically load the closest
.jscsrcfile. So no longer a need to explicitly specify aconfigPath.Change your code accordingly:
const gulp = require('gulp'); const jscs = require('gulp-jscs');gulp.task('default', () => { return gulp.src('src/app.js')
- .pipe(jscs({configPath: '.jscsrc'}));
- .pipe(jscs())
- .pipe(jscs.reporter()); });
Changes: https://github.com/jscs-dev/gulp-jscs/compare/v2.0.0...v3.0.0
Commits
16f8afe4.1.0f0c4b42Drop dependency on deprecatedgulp-util(#121)f7471e84.0.07face69deps: [email protected] (#112)376e2dcbump dev deps237d2c53.0.2cd4f150Merge pull request #97 from jayeb/jayeb-patch-10fde1ccPass full path into Checker instead of relative81a6f883.0.1aa9db33Close #93 PR: Fixed issue when "autofix" doesn't fix all files..- Additional commits viewable in compare view
Updates gulp-jshint from 1.12.0 to 2.1.0
Changelog
Sourced from gulp-jshint's changelog.
2.0
jshint is now a peerDependency, meaning you must install it seperately
npm install jshint gulp-jshint --save-dev
Commits
32a25b02.1.02c57c9fMerge pull request #157 from spalger/remove-gulp-util5f621f8vinyl is only used in testing5eaabddadd yarn.lock file for dev154180d[gulp-util/PluginError] use plugin-error directly357ab98[gulp-util/File] use Vinyl directly807bead2.0.4aca8740Add test to verify that default files are not brokenc2774342.0.3711f3f0test fix- Additional commits viewable in compare view
Updates gulp-load-plugins from 0.10.0 to 2.0.8
Release notes
Sourced from gulp-load-plugins's releases.
v2.0.8
- Fixes #141 - module.parent deprecated in Node 14+. Thanks
@DaveyJake- Update dependencies
If you get the error
Cannot read properties of undefined (reading 'filename'), this is because you're using a version of node wheremodule.parentis undefined. To resolve, you need to addconfigto the plugin when instantiated with the path to yourpackage.jsonfile to read its dependencies. For example:import gulpLoadPlugins from 'gulp-load-plugins';const $ = gulpLoadPlugins({ config: process.env.npm_package_json });
v2.0.7
Update dependencies
v2.0.6
Update dependencies and add power support for Travis on ppc64le - thanks
@dineshks1- PRv2.0.5
Updating dependencies
v2.0.4
Updating dependencies
v2.0.3
Updating dependencies
v2.0.2
No release notes provided.
Commits
44773aeFixes #141 - module.parent deprecated in Node 14+7d9d7e3v2.0.7 - Updating dependencies117eeeeupdate changelog1b0e333version bump58cdc59updating dependencies. includes #140 Adds travis jobs on ppc64le9854159Merge pull request #140 from dineshks1/master57d03f2Adds travis jobs on ppc64le549b585v2.0.5 - updating deps8fdff49Add Node 14, remove Node 8 for CId84b4d3updating dependencies- Additional commits viewable in compare view
Maintainer changes
This version was pushed to npm by jameelmoses, a new releaser for gulp-load-plugins since your current version.
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)@dependabot use these labelswill set the current labels as the default for future PRs for this repo and language@dependabot use these reviewerswill set the current reviewers as the default for future PRs for this repo and language@dependabot use these assigneeswill set the current assignees as the default for future PRs for this repo and language@dependabot use this milestonewill set the current milestone as the default for future PRs for this repo and language
You can disable automated security fix PRs for this repo from the Security Alerts page.