docpad-plugin-cleanurls
Advanced tools
Comparing version 2.5.1 to 2.5.2
@@ -1,6 +0,10 @@ | ||
# The MIT License | ||
Copyright © 2012+ [Bevry Pty Ltd](http://bevry.me) <us@bevry.me> | ||
<br/>Copyright © 2011 [Benjamin Lupton](http://balupton.com) <b@lupton.cc> | ||
<!-- LICENSEFILE/ --> | ||
# License | ||
Copyright © 2012+ Bevry Pty Ltd <us@bevry.me> (http://bevry.me) | ||
<br/>Copyright © 2011 Benjamin Lupton <b@lupton.cc> (http://balupton.com) | ||
## The MIT License | ||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | ||
@@ -11,1 +15,5 @@ | ||
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
<!-- /LICENSEFILE --> | ||
// Generated by CoffeeScript 1.6.3 | ||
var __bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; }, | ||
__hasProp = {}.hasOwnProperty, | ||
__extends = function(child, parent) { for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; }, | ||
__indexOf = [].indexOf || function(item) { for (var i = 0, l = this.length; i < l; i++) { if (i in this && this[i] === item) return i; } return -1; }; | ||
(function() { | ||
var __bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; }, | ||
__hasProp = {}.hasOwnProperty, | ||
__extends = function(child, parent) { for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; }, | ||
__indexOf = [].indexOf || function(item) { for (var i = 0, l = this.length; i < l; i++) { if (i in this && this[i] === item) return i; } return -1; }; | ||
module.exports = function(BasePlugin) { | ||
var CleanUrlsPlugin, _ref; | ||
return CleanUrlsPlugin = (function(_super) { | ||
__extends(CleanUrlsPlugin, _super); | ||
module.exports = function(BasePlugin) { | ||
var CleanUrlsPlugin, _ref; | ||
return CleanUrlsPlugin = (function(_super) { | ||
__extends(CleanUrlsPlugin, _super); | ||
function CleanUrlsPlugin() { | ||
this.cleanUrlsForDocument = __bind(this.cleanUrlsForDocument, this); | ||
_ref = CleanUrlsPlugin.__super__.constructor.apply(this, arguments); | ||
return _ref; | ||
} | ||
function CleanUrlsPlugin() { | ||
this.cleanUrlsForDocument = __bind(this.cleanUrlsForDocument, this); | ||
_ref = CleanUrlsPlugin.__super__.constructor.apply(this, arguments); | ||
return _ref; | ||
} | ||
CleanUrlsPlugin.prototype.name = 'cleanurls'; | ||
CleanUrlsPlugin.prototype.name = 'cleanurls'; | ||
CleanUrlsPlugin.prototype.config = { | ||
getRedirectTemplate: function(document) { | ||
return "<!DOCTYPE html>\n<html>\n <head>\n <title>" + (document.get('title') || 'Redirect') + "</title>\n <meta http-equiv=\"REFRESH\" content=\"0;url=" + (document.get('url')) + "\">\n </head>\n <body>\n This page has moved. You will be automatically redirected to its new location. If you aren't forwarded to the new page, <a href=\"" + (document.get('url')) + "\">click here</a>.\n </body>\n</html>"; | ||
}, | ||
trailingSlashes: false | ||
}; | ||
CleanUrlsPlugin.prototype.config = { | ||
getRedirectTemplate: function(document) { | ||
return "<!DOCTYPE html>\n<html>\n <head>\n <title>" + (document.get('title') || 'Redirect') + "</title>\n <meta http-equiv=\"REFRESH\" content=\"0;url=" + (document.get('url')) + "\">\n </head>\n <body>\n This page has moved. You will be automatically redirected to its new location. If you aren't forwarded to the new page, <a href=\"" + (document.get('url')) + "\">click here</a>.\n </body>\n</html>"; | ||
}, | ||
trailingSlashes: false | ||
}; | ||
CleanUrlsPlugin.prototype.cleanUrlsForDocument = function(document) { | ||
var pathUtil, relativeBaseUrl, relativeDirUrl, trailingSlashes, url; | ||
url = document.get('url'); | ||
pathUtil = require('path'); | ||
trailingSlashes = this.config.trailingSlashes; | ||
if (/index\.html$/i.test(url)) { | ||
relativeDirUrl = pathUtil.dirname(url); | ||
if (trailingSlashes && relativeDirUrl !== '/') { | ||
relativeDirUrl += '/'; | ||
CleanUrlsPlugin.prototype.cleanUrlsForDocument = function(document) { | ||
var pathUtil, relativeBaseUrl, relativeDirUrl, trailingSlashes, url; | ||
url = document.get('url'); | ||
pathUtil = require('path'); | ||
trailingSlashes = this.config.trailingSlashes; | ||
if (/index\.html$/i.test(url)) { | ||
relativeDirUrl = pathUtil.dirname(url); | ||
if (trailingSlashes && relativeDirUrl !== '/') { | ||
relativeDirUrl += '/'; | ||
} | ||
document.setUrl(relativeDirUrl); | ||
} else if (/\.html$/i.test(url)) { | ||
relativeBaseUrl = url.replace(/\.html$/, ''); | ||
document.setUrl(relativeBaseUrl + (trailingSlashes ? '/' : '')); | ||
document.addUrl(relativeBaseUrl + (trailingSlashes ? '' : '/')); | ||
} | ||
document.setUrl(relativeDirUrl); | ||
} else if (/\.html$/i.test(url)) { | ||
relativeBaseUrl = url.replace(/\.html$/, ''); | ||
document.setUrl(relativeBaseUrl + (trailingSlashes ? '/' : '')); | ||
document.addUrl(relativeBaseUrl + (trailingSlashes ? '' : '/')); | ||
} | ||
return document; | ||
}; | ||
return document; | ||
}; | ||
CleanUrlsPlugin.prototype.renderBefore = function(opts) { | ||
var collection, docpad; | ||
docpad = this.docpad; | ||
collection = docpad.getCollection('html'); | ||
docpad.log('debug', 'Applying clean urls'); | ||
collection.forEach(this.cleanUrlsForDocument); | ||
docpad.log('debug', 'Applied clean urls'); | ||
return this; | ||
}; | ||
CleanUrlsPlugin.prototype.renderBefore = function(opts) { | ||
var collection, docpad; | ||
docpad = this.docpad; | ||
collection = docpad.getCollection('html'); | ||
docpad.log('debug', 'Applying clean urls'); | ||
collection.forEach(this.cleanUrlsForDocument); | ||
docpad.log('debug', 'Applied clean urls'); | ||
return this; | ||
}; | ||
CleanUrlsPlugin.prototype.writeAfter = function(opts, next) { | ||
var TaskGroup, addWriteTask, collection, config, docpad, docpadConfig, getCleanOutPathFromUrl, pathUtil, safefs, tasks; | ||
config = this.config; | ||
docpad = this.docpad; | ||
docpadConfig = docpad.getConfig(); | ||
collection = docpad.getCollection('html'); | ||
TaskGroup = require('taskgroup').TaskGroup; | ||
safefs = require('safefs'); | ||
pathUtil = require('path'); | ||
getCleanOutPathFromUrl = function(url) { | ||
url = url.replace(/\/+$/, ''); | ||
if (/index.html$/.test(url)) { | ||
return pathUtil.join(docpadConfig.outPath, url); | ||
CleanUrlsPlugin.prototype.writeAfter = function(opts, next) { | ||
var TaskGroup, addWriteTask, collection, config, docpad, docpadConfig, getCleanOutPathFromUrl, pathUtil, safefs, tasks; | ||
config = this.config; | ||
docpad = this.docpad; | ||
docpadConfig = docpad.getConfig(); | ||
collection = docpad.getCollection('html'); | ||
TaskGroup = require('taskgroup').TaskGroup; | ||
safefs = require('safefs'); | ||
pathUtil = require('path'); | ||
getCleanOutPathFromUrl = function(url) { | ||
url = url.replace(/\/+$/, ''); | ||
if (/index.html$/.test(url)) { | ||
return pathUtil.join(docpadConfig.outPath, url); | ||
} else { | ||
return pathUtil.join(docpadConfig.outPath, url.replace(/\.html$/, '') + '/index.html'); | ||
} | ||
}; | ||
if (__indexOf.call(docpad.getEnvironments(), 'static') >= 0) { | ||
docpad.log('debug', 'Writing static clean url files'); | ||
tasks = new TaskGroup().setConfig({ | ||
concurrency: 0 | ||
}).once('complete', function(err) { | ||
docpad.log('debug', 'Wrote static clean url files'); | ||
return next(err); | ||
}); | ||
addWriteTask = function(outPath, outContent, encoding) { | ||
return tasks.addTask(function(complete) { | ||
return safefs.writeFile(outPath, outContent, encoding, complete); | ||
}); | ||
}; | ||
collection.forEach(function(document) { | ||
var encoding, primaryOutPath, primaryUrl, primaryUrlOutPath, redirectContent, redirectOutPath, redirectOutPaths, url, urls, _i, _j, _len, _len1, _results; | ||
if (document.get('write') === false || document.get('ignore') === true || document.get('render') === false) { | ||
return; | ||
} | ||
encoding = document.get('encoding'); | ||
primaryUrl = document.get('url'); | ||
primaryUrlOutPath = getCleanOutPathFromUrl(primaryUrl); | ||
primaryOutPath = document.get('outPath'); | ||
urls = document.get('urls'); | ||
redirectContent = config.getRedirectTemplate(document); | ||
redirectOutPaths = []; | ||
if (primaryUrlOutPath !== primaryOutPath) { | ||
addWriteTask(primaryUrlOutPath, document.getOutContent(), encoding); | ||
redirectOutPaths.push(primaryOutPath); | ||
} | ||
for (_i = 0, _len = urls.length; _i < _len; _i++) { | ||
url = urls[_i]; | ||
redirectOutPath = getCleanOutPathFromUrl(url); | ||
if ((__indexOf.call(redirectOutPaths, redirectOutPath) >= 0) === false && redirectOutPath !== primaryUrlOutPath) { | ||
redirectOutPaths.push(redirectOutPath); | ||
} | ||
} | ||
_results = []; | ||
for (_j = 0, _len1 = redirectOutPaths.length; _j < _len1; _j++) { | ||
redirectOutPath = redirectOutPaths[_j]; | ||
_results.push(addWriteTask(redirectOutPath, redirectContent, encoding)); | ||
} | ||
return _results; | ||
}); | ||
tasks.run(); | ||
} else { | ||
return pathUtil.join(docpadConfig.outPath, url.replace(/\.html$/, '') + '/index.html'); | ||
next(); | ||
} | ||
return this; | ||
}; | ||
if (__indexOf.call(docpad.getEnvironments(), 'static') >= 0) { | ||
docpad.log('debug', 'Writing static clean url files'); | ||
tasks = new TaskGroup().setConfig({ | ||
concurrency: 0 | ||
}).once('complete', function(err) { | ||
docpad.log('debug', 'Wrote static clean url files'); | ||
return next(err); | ||
}); | ||
addWriteTask = function(outPath, outContent, encoding) { | ||
return tasks.addTask(function(complete) { | ||
return safefs.writeFile(outPath, outContent, encoding, complete); | ||
}); | ||
}; | ||
collection.forEach(function(document) { | ||
var encoding, primaryOutPath, primaryUrl, primaryUrlOutPath, redirectContent, redirectOutPath, redirectOutPaths, url, urls, _i, _j, _len, _len1, _results; | ||
if (document.get('write') === false || document.get('ignore') === true || document.get('render') === false) { | ||
return; | ||
} | ||
encoding = document.get('encoding'); | ||
primaryUrl = document.get('url'); | ||
primaryUrlOutPath = getCleanOutPathFromUrl(primaryUrl); | ||
primaryOutPath = document.get('outPath'); | ||
urls = document.get('urls'); | ||
redirectContent = config.getRedirectTemplate(document); | ||
redirectOutPaths = []; | ||
if (primaryUrlOutPath !== primaryOutPath) { | ||
addWriteTask(primaryUrlOutPath, document.getOutContent(), encoding); | ||
redirectOutPaths.push(primaryOutPath); | ||
} | ||
for (_i = 0, _len = urls.length; _i < _len; _i++) { | ||
url = urls[_i]; | ||
redirectOutPath = getCleanOutPathFromUrl(url); | ||
if ((__indexOf.call(redirectOutPaths, redirectOutPath) >= 0) === false && redirectOutPath !== primaryUrlOutPath) { | ||
redirectOutPaths.push(redirectOutPath); | ||
} | ||
} | ||
_results = []; | ||
for (_j = 0, _len1 = redirectOutPaths.length; _j < _len1; _j++) { | ||
redirectOutPath = redirectOutPaths[_j]; | ||
_results.push(addWriteTask(redirectOutPath, redirectContent, encoding)); | ||
} | ||
return _results; | ||
}); | ||
tasks.run(); | ||
} else { | ||
next(); | ||
} | ||
return this; | ||
}; | ||
return CleanUrlsPlugin; | ||
return CleanUrlsPlugin; | ||
})(BasePlugin); | ||
}; | ||
})(BasePlugin); | ||
}; | ||
}).call(this); |
{ | ||
"name": "docpad-plugin-cleanurls", | ||
"version": "2.5.1", | ||
"description": "Adds support for clean urls to DocPad", | ||
"homepage": "http://docpad.org/plugin/cleanurls", | ||
"keywords": [ | ||
"docpad", | ||
"docpad-plugin", | ||
"clean urls", | ||
"seo" | ||
], | ||
"author": "Bevry Pty Ltd <us@bevry.me> (http://bevry.me)", | ||
"maintainers": [ | ||
"Benjamin Lupton <b@lupton.cc> (https://github.com/balupton)" | ||
], | ||
"contributors": [ | ||
"Benjamin Lupton <b@lupton.cc> (https://github.com/balupton)", | ||
"Adam Hull (https://github.com/hurrymaplelad)" | ||
], | ||
"bugs": { | ||
"url": "https://github.com/bevry/docpad-extras/issues" | ||
}, | ||
"repository" : { | ||
"type": "git", | ||
"url": "https://github.com/bevry/docpad-extras.git" | ||
}, | ||
"engines" : { | ||
"node": ">=0.4", | ||
"docpad": ">=6.3 <7" | ||
}, | ||
"dependencies": { | ||
"safefs": "~3.0.1", | ||
"taskgroup": "~3.2.0" | ||
}, | ||
"devDependencies": { | ||
"coffee-script": "~1.6.2", | ||
"docpad": ">=6.37 <7", | ||
"chai": "~1.7.1", | ||
"request": "~2.27.0" | ||
}, | ||
"main": "./out/cleanurls.plugin.js", | ||
"scripts": { | ||
"test": "node ./out/cleanurls.test.js" | ||
} | ||
"name": "docpad-plugin-cleanurls", | ||
"version": "2.5.2", | ||
"description": "Adds support for clean urls to DocPad", | ||
"homepage": "http://docpad.org/plugin/cleanurls", | ||
"license": { | ||
"type": "MIT" | ||
}, | ||
"badges": { | ||
"travis": true, | ||
"npm": true, | ||
"gittip": "bevry", | ||
"flattr": "344188/balupton-on-Flattr", | ||
"paypal": "QB8GQPZAH84N6" | ||
}, | ||
"keywords": [ | ||
"docpad", | ||
"docpad-plugin", | ||
"clean urls", | ||
"seo" | ||
], | ||
"author": "2012+ Bevry Pty Ltd <us@bevry.me> (http://bevry.me), 2011 Benjamin Lupton <b@lupton.cc> (http://balupton.com)", | ||
"maintainers": [ | ||
"Benjamin Lupton <b@lupton.cc> (https://github.com/balupton)" | ||
], | ||
"contributors": [], | ||
"bugs": { | ||
"url": "https://github.com/bevry/docpad-extras/issues" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/bevry/docpad-extras.git" | ||
}, | ||
"engines": { | ||
"node": ">=0.4" | ||
}, | ||
"dependencies": { | ||
"safefs": "~3.0.1", | ||
"taskgroup": "~3.3.2" | ||
}, | ||
"devDependencies": { | ||
"coffee-script": "~1.6.2", | ||
"chai": "~1.8.1", | ||
"request": "~2.27.0" | ||
}, | ||
"main": "./out/cleanurls.plugin.js", | ||
"scripts": { | ||
"test": "node ./out/cleanurls.test.js" | ||
}, | ||
"peerDependencies": { | ||
"docpad": ">=6.3 <7" | ||
} | ||
} |
# Clean URLs Plugin for [DocPad](https://docpad.org) | ||
[![Build Status](https://secure.travis-ci.org/docpad/docpad-plugin-cleanurls.png?branch=master)](http://travis-ci.org/docpad/docpad-plugin-cleanurls "Check this project's build status on TravisCI") | ||
[![NPM version](https://badge.fury.io/js/docpad-plugin-cleanurls.png)](https://npmjs.org/package/docpad-plugin-cleanurls "View this project on NPM") | ||
[![Flattr donate button](https://raw.github.com/balupton/flattr-buttons/master/badge-89x18.gif)](http://flattr.com/thing/344188/balupton-on-Flattr "Donate monthly to this project using Flattr") | ||
[![PayPayl donate button](https://www.paypalobjects.com/en_AU/i/btn/btn_donate_SM.gif)](https://www.paypal.com/au/cgi-bin/webscr?cmd=_flow&SESSION=IHj3DG3oy_N9A9ZDIUnPksOi59v0i-EWDTunfmDrmU38Tuohg_xQTx0xcjq&dispatch=5885d80a13c0db1f8e263663d3faee8d14f86393d55a810282b64afed84968ec "Donate once-off to this project using Paypal") | ||
<!-- BADGES/ --> | ||
[![Build Status](http://img.shields.io/travis-ci/bevry/docpad-plugin-cleanurls.png?branch=master)](http://travis-ci.org/bevry/docpad-plugin-cleanurls "Check this project's build status on TravisCI") | ||
[![NPM version](http://badge.fury.io/js/docpad-plugin-cleanurls.png)](https://npmjs.org/package/docpad-plugin-cleanurls "View this project on NPM") | ||
[![Gittip donate button](http://img.shields.io/gittip/bevry.png)](https://www.gittip.com/bevry/ "Donate weekly to this project using Gittip") | ||
[![Flattr donate button](http://img.shields.io/flattr/donate.png?color=yellow)](http://flattr.com/thing/344188/balupton-on-Flattr "Donate monthly to this project using Flattr") | ||
[![PayPayl donate button](http://img.shields.io/paypal/donate.png?color=yellow)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=QB8GQPZAH84N6 "Donate once-off to this project using Paypal") | ||
<!-- /BADGES --> | ||
Adds support for clean URLs to [DocPad](https://docpad.org) | ||
@@ -39,13 +45,56 @@ | ||
<!-- HISTORY/ --> | ||
## History | ||
[You can discover the history inside the `History.md` file](https://github.com/bevry/docpad-plugin-cleanurls/blob/master/History.md#files) | ||
[Discover the change history by heading on over to the `History.md` file.](https://github.com/bevry/docpad-plugin-cleanurls/blob/master/History.md#files) | ||
<!-- /HISTORY --> | ||
## Contributing | ||
[You can discover the contributing instructions inside the `Contributing.md` file](https://github.com/bevry/docpad-plugin-cleanurls/blob/master/Contributing.md#files) | ||
<!-- CONTRIBUTE/ --> | ||
## Contribute | ||
[Discover how you can contribute by heading on over to the `Contributing.md` file.](https://github.com/bevry/docpad-plugin-cleanurls/blob/master/Contributing.md#files) | ||
<!-- /CONTRIBUTE --> | ||
<!-- BACKERS/ --> | ||
## Backers | ||
### Maintainers | ||
These amazing people are maintaining this project: | ||
- Benjamin Lupton <b@lupton.cc> (https://github.com/balupton) | ||
### Sponsors | ||
No sponsors yet! Will you be the first? | ||
[![Gittip donate button](http://img.shields.io/gittip/bevry.png)](https://www.gittip.com/bevry/ "Donate weekly to this project using Gittip") | ||
[![Flattr donate button](http://img.shields.io/flattr/donate.png?color=yellow)](http://flattr.com/thing/344188/balupton-on-Flattr "Donate monthly to this project using Flattr") | ||
[![PayPayl donate button](http://img.shields.io/paypal/donate.png?color=yellow)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=QB8GQPZAH84N6 "Donate once-off to this project using Paypal") | ||
### Contributors | ||
No contributors yet! Will you be the first? | ||
[Discover how you can contribute by heading on over to the `Contributing.md` file.](https://github.com/bevry/docpad-plugin-cleanurls/blob/master/Contributing.md#files) | ||
<!-- /BACKERS --> | ||
<!-- LICENSE/ --> | ||
## License | ||
Licensed under the incredibly [permissive](http://en.wikipedia.org/wiki/Permissive_free_software_licence) [MIT License](http://creativecommons.org/licenses/MIT/) | ||
<br/>Copyright © 2012+ [Bevry Pty Ltd](http://bevry.me) | ||
<br/>Copyright © 2011 [Benjamin Lupton](http://balupton.com) | ||
Licensed under the incredibly [permissive](http://en.wikipedia.org/wiki/Permissive_free_software_licence) [MIT license](http://creativecommons.org/licenses/MIT/) | ||
Copyright © 2012+ Bevry Pty Ltd <us@bevry.me> (http://bevry.me) | ||
<br/>Copyright © 2011 Benjamin Lupton <b@lupton.cc> (http://balupton.com) | ||
<!-- /LICENSE --> | ||
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
17886
3
8
203
100
3
+ Added@bevry/ansi@6.9.0(transitive)
+ Added@bevry/pluginloader@4.13.0(transitive)
+ Addedambi@2.5.03.2.0(transitive)
+ Addedansi-escapes@4.3.2(transitive)
+ Addedansi-regex@5.0.1(transitive)
+ Addedansi-styles@4.3.0(transitive)
+ Addedansistyles@0.1.3(transitive)
+ Addedargparse@1.0.10(transitive)
+ Addedbackbone@1.6.0(transitive)
+ Addedbal-util@2.8.0(transitive)
+ Addedbalanced-match@1.0.2(transitive)
+ Addedbinaryextensions@4.19.0(transitive)
+ Addedbrace-expansion@1.1.11(transitive)
+ Addedcac@6.7.14(transitive)
+ Addedcaterpillar@6.12.0(transitive)
+ Addedchalk@4.1.2(transitive)
+ Addedchardet@0.7.0(transitive)
+ Addedcli-cursor@3.1.0(transitive)
+ Addedcli-width@3.0.0(transitive)
+ Addedcoffeescript@1.12.7(transitive)
+ Addedcolor-convert@2.0.1(transitive)
+ Addedcolor-name@1.1.4(transitive)
+ Addedconcat-map@0.0.1(transitive)
+ Addedcsextends@1.2.0(transitive)
+ Addedcson@7.20.0(transitive)
+ Addedcson-parser@4.0.9(transitive)
+ Addeddocmatter@3.23.0(transitive)
+ Addeddocpad@6.83.2(transitive)
+ Addeddocpad-baseplugin@1.4.0(transitive)
+ Addedeachr@3.3.04.5.0(transitive)
+ Addededitions@1.3.42.3.16.21.0(transitive)
+ Addedemoji-regex@8.0.0(transitive)
+ Addedencoding@0.1.13(transitive)
+ Addedenvfile@6.22.0(transitive)
+ Addederrlop@2.2.03.17.07.5.0(transitive)
+ Addedescape-string-regexp@1.0.5(transitive)
+ Addedevent-emitter-grouped@4.20.0(transitive)
+ Addedextendr@3.5.05.20.0(transitive)
+ Addedexternal-editor@3.1.0(transitive)
+ Addedextract-opts@3.4.04.3.0(transitive)
+ Addedfigures@3.2.0(transitive)
+ Addedfs.realpath@1.0.0(transitive)
+ Addedget-current-line@6.10.0(transitive)
+ Addedglob@7.2.3(transitive)
+ Addedgraceful-fs@4.2.11(transitive)
+ Addedhas-flag@4.0.0(transitive)
+ Addediconv-lite@0.4.240.6.3(transitive)
+ Addedignorefs@1.4.13.18.0(transitive)
+ Addedignorepatterns@1.4.04.18.0(transitive)
+ Addedinflight@1.0.6(transitive)
+ Addedinherits@2.0.4(transitive)
+ Addedinquirer@7.3.3(transitive)
+ Addedis-fullwidth-code-point@3.0.0(transitive)
+ Addedistextorbinary@5.15.0(transitive)
+ Addedjschardet@2.2.1(transitive)
+ Addedlazy-require@4.6.0(transitive)
+ Addedlodash@4.17.21(transitive)
+ Addedmime@2.6.0(transitive)
+ Addedmimic-fn@2.1.0(transitive)
+ Addedminimatch@3.1.2(transitive)
+ Addedmute-stream@0.0.8(transitive)
+ Addednode-fetch@2.7.0(transitive)
+ Addedonce@1.4.0(transitive)
+ Addedonetime@5.1.2(transitive)
+ Addedos-tmpdir@1.0.2(transitive)
+ Addedpath-is-absolute@1.0.1(transitive)
+ Addedprogress-title@3.18.0(transitive)
+ Addedquery-engine@1.5.7(transitive)
+ Addedreaddir-cluster@3.18.0(transitive)
+ Addedrequirefresh@4.13.0(transitive)
+ Addedrestore-cursor@3.1.0(transitive)
+ Addedrfc-log-levels@3.21.0(transitive)
+ Addedrimraf@3.0.2(transitive)
+ Addedrun-async@2.4.1(transitive)
+ Addedrxjs@6.6.7(transitive)
+ Addedsafefs@3.2.24.2.06.16.0(transitive)
+ Addedsafeps@10.18.07.0.1(transitive)
+ Addedsafer-buffer@2.1.2(transitive)
+ Addedscandirectory@2.5.06.18.0(transitive)
+ Addedsemver@6.3.17.6.3(transitive)
+ Addedsignal-exit@3.0.7(transitive)
+ Addedsprintf-js@1.0.3(transitive)
+ Addedstring-width@4.2.3(transitive)
+ Addedstrip-ansi@6.0.1(transitive)
+ Addedsupports-color@7.2.0(transitive)
+ Addedtaskgroup@4.3.15.5.07.20.0(transitive)
+ Addedtextextensions@5.16.0(transitive)
+ Addedthrough@2.3.8(transitive)
+ Addedtmp@0.0.33(transitive)
+ Addedtr46@0.0.3(transitive)
+ Addedtslib@1.14.1(transitive)
+ Addedtype-fest@0.21.3(transitive)
+ Addedtypechecker@4.11.06.4.07.18.08.6.0(transitive)
+ Addedunbounded@1.3.03.16.0(transitive)
+ Addedunderscore@1.13.7(transitive)
+ Addedversion-range@4.14.0(transitive)
+ Addedwatchr@6.11.0(transitive)
+ Addedwebidl-conversions@3.0.1(transitive)
+ Addedwhatwg-url@5.0.0(transitive)
+ Addedwrappy@1.0.2(transitive)
+ Addedyamljs@0.3.0(transitive)
- Removedtaskgroup@3.2.4(transitive)
Updatedtaskgroup@~3.3.2