Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🚨 [security] Update ejs 3.1.5 → 3.1.10 (patch) #63

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

depfu[bot]
Copy link
Contributor

@depfu depfu bot commented Apr 14, 2024


Welcome to Depfu 👋

This is one of the first three pull requests with dependency updates we've sent your way. We tried to start with a few easy patch-level updates. Hopefully your tests will pass and you can merge this pull request without too much risk. This should give you an idea how Depfu works in general.

After you merge your first pull request, we'll send you a few more. We'll never open more than seven PRs at the same time so you're not getting overwhelmed with updates.

Let us know if you have any questions. Thanks so much for giving Depfu a try!



🚨 Your current dependencies have known security vulnerabilities 🚨

This dependency update fixes known security vulnerabilities. Please see the details below and assess their impact carefully. We recommend to merge and deploy this as soon as possible!


Here is everything you need to know about this update. Please take a good look at what changed and the test results before merging this pull request.

What changed?

✳️ ejs (3.1.5 → 3.1.10) · Repo · Changelog

Security Advisories 🚨

🚨 ejs lacks certain pollution protection

The ejs (aka Embedded JavaScript templates) package before 3.1.10 for Node.js lacks certain pollution protection.

🚨 ejs template injection vulnerability

The ejs (aka Embedded JavaScript templates) package 3.1.6 for Node.js allows server-side template injection in settings[view options][outputFunctionName]. This is parsed as an internal option, and overwrites the outputFunctionName option with an arbitrary OS command (which is executed upon template compilation).

Release Notes

3.1.10

Version 3.1.10

3.1.9

Version 3.1.9

3.1.8

Version 3.1.8

3.1.7

Version 3.1.7

3.1.6

Version 3.1.6

Does any of this look wrong? Please let us know.

Commits

See the full diff on Github. The new version differs by more commits than we can show here.

↗️ async (indirect, 0.9.2 → 3.2.5) · Repo · Changelog

Security Advisories 🚨

🚨 Prototype Pollution in async

A vulnerability exists in Async through 3.2.1 for 3.x and through 2.6.3 for 2.x (fixed in 3.2.2 and 2.6.4), which could let a malicious user obtain privileges via the mapValues() method.

🚨 Prototype Pollution in async

A vulnerability exists in Async through 3.2.1 for 3.x and through 2.6.3 for 2.x (fixed in 3.2.2 and 2.6.4), which could let a malicious user obtain privileges via the mapValues() method.

Release Notes

3.2.4 (from changelog)

  • Fix a bug in priorityQueue where it didn't wait for the result. (#1725)
  • Fix a bug where unshiftAsync was included in priorityQueue. (#1790)

3.2.3 (from changelog)

  • Fix bugs in comment parsing in autoInject. (#1767, #1780)

3.2.2 (from changelog)

  • Fix potential prototype pollution exploit

3.2.1 (from changelog)

3.2.0 (from changelog)

  • Fix a bug in Safari related to overwriting func.name
  • Remove built-in browserify configuration (#1653)
  • Varios doc fixes (#1688, #1703, #1704)

3.1.1 (from changelog)

  • Allow redefining name property on wrapped functions.

3.1.0 (from changelog)

  • Added q.pushAsync and q.unshiftAsync, analagous to q.push and q.unshift, except they always do not accept a callback, and reject if processing the task errors. (#1659)
  • Promises returned from q.push and q.unshift when a callback is not passed now resolve even if an error ocurred. (#1659)
  • Fixed a parsing bug in autoInject with complicated function bodies (#1663)
  • Added ES6+ configuration for Browserify bundlers (#1653)
  • Various doc fixes (#1664, #1658, #1665, #1652)

3.0.1 (from changelog)

Bug fixes

  • Fixed a regression where arrays passed to queue and cargo would be completely flattened. (#1645)
  • Clarified Async's browser support (#1643)

3.0.0 (from changelog)

The async/await release!

There are a lot of new features and subtle breaking changes in this major version, but the biggest feature is that most Async methods return a Promise if you omit the callback, meaning you can await them from within an async function.

const results = await async.mapLimit(urls, 5, async url => {
    const resp = await fetch(url)
    return resp.body
})

Breaking Changes

  • Most Async methods return a Promise when the final callback is omitted, making them await-able! (#1572)
  • We are now making heavy use of ES2015 features, this means we have dropped out-of-the-box support for Node 4 and earlier, and many old versions of browsers. (#1541, #1553)
  • In queue, priorityQueue, cargo and cargoQueue, the "event"-style methods, like q.drain and q.saturated are now methods that register a callback, rather than properties you assign a callback to. They are now of the form q.drain(callback). If you do not pass a callback a Promise will be returned for the next occurrence of the event, making them await-able, e.g. await q.drain(). (#1586, #1641)
  • Calling callback(false) will cancel an async method, preventing further iteration and callback calls. This is useful for preventing memory leaks when you break out of an async flow by calling an outer callback. (#1064, #1542)
  • during and doDuring have been removed, and instead whilst, doWhilst, until and doUntil now have asynchronous test functions. (#850, #1557)
  • limits of less than 1 now cause an error to be thrown in queues and collection methods. (#1249, #1552)
  • memoize no longer memoizes errors (#1465, #1466)
  • applyEach/applyEachSeries have a simpler interface, to make them more easily type-able. It always returns a function that takes in a single callback argument. If that callback is omitted, a promise is returned, making it awaitable. (#1228, #1640)

New Features

  • Async generators are now supported in all the Collection methods. (#1560)
  • Added cargoQueue, a queue with both concurrency and payload size parameters. (#1567)
  • Queue objects returned from queue now have a Symbol.iterator method, meaning they can be iterated over to inspect the current list of items in the queue. (#1459, #1556)
  • A ESM-flavored async.mjs is included in the async package. This is described in the package.json "module" field, meaning it should be automatically used by Webpack and other compatible bundlers.

Bug fixes

  • Better handle arbitrary error objects in asyncify (#1568, #1569)

Other


Does any of this look wrong? Please let us know.

Commits

See the full diff on Github. The new version differs by more commits than we can show here.

↗️ filelist (indirect, 1.0.1 → 1.0.4) · Repo

Commits

See the full diff on Github. The new version differs by more commits than we can show here.

↗️ jake (indirect, 10.8.2 → 10.8.7) · Repo · Changelog

Commits

See the full diff on Github. The new version differs by more commits than we can show here.

🆕 @​ampproject/remapping (added, 2.3.0)

🆕 @​babel/code-frame (added, 7.24.2)

🆕 @​babel/compat-data (added, 7.24.4)

🆕 @​babel/core (added, 7.24.4)

🆕 @​babel/generator (added, 7.24.4)

🆕 @​babel/helper-annotate-as-pure (added, 7.22.5)

🆕 @​babel/helper-builder-binary-assignment-operator-visitor (added, 7.22.15)

🆕 @​babel/helper-compilation-targets (added, 7.23.6)

🆕 @​babel/helper-create-class-features-plugin (added, 7.24.4)

🆕 @​babel/helper-create-regexp-features-plugin (added, 7.22.15)

🆕 @​babel/helper-define-polyfill-provider (added, 0.6.1)

🆕 @​babel/helper-environment-visitor (added, 7.22.20)

🆕 @​babel/helper-function-name (added, 7.23.0)

🆕 @​babel/helper-hoist-variables (added, 7.22.5)

🆕 @​babel/helper-member-expression-to-functions (added, 7.23.0)

🆕 @​babel/helper-module-imports (added, 7.24.3)

🆕 @​babel/helper-module-transforms (added, 7.23.3)

🆕 @​babel/helper-optimise-call-expression (added, 7.22.5)

🆕 @​babel/helper-plugin-utils (added, 7.24.0)

🆕 @​babel/helper-remap-async-to-generator (added, 7.22.20)

🆕 @​babel/helper-replace-supers (added, 7.24.1)

🆕 @​babel/helper-simple-access (added, 7.22.5)

🆕 @​babel/helper-skip-transparent-expression-wrappers (added, 7.22.5)

🆕 @​babel/helper-split-export-declaration (added, 7.22.6)

🆕 @​babel/helper-string-parser (added, 7.24.1)

🆕 @​babel/helper-validator-identifier (added, 7.22.20)

🆕 @​babel/helper-validator-option (added, 7.23.5)

🆕 @​babel/helper-wrap-function (added, 7.22.20)

🆕 @​babel/helpers (added, 7.24.4)

🆕 @​babel/highlight (added, 7.24.2)

🆕 @​babel/parser (added, 7.24.4)

🆕 @​babel/plugin-bugfix-firefox-class-in-computed-class-key (added, 7.24.4)

🆕 @​babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression (added, 7.24.1)

🆕 @​babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining (added, 7.24.1)

🆕 @​babel/plugin-bugfix-v8-static-class-fields-redefine-readonly (added, 7.24.1)

🆕 @​babel/plugin-proposal-class-properties (added, 7.18.6)

🆕 @​babel/plugin-proposal-decorators (added, 7.24.1)

🆕 @​babel/plugin-proposal-export-default-from (added, 7.24.1)

🆕 @​babel/plugin-proposal-nullish-coalescing-operator (added, 7.18.6)

🆕 @​babel/plugin-proposal-object-rest-spread (added, 7.20.7)

🆕 @​babel/plugin-proposal-optional-chaining (added, 7.21.0)

🆕 @​babel/plugin-proposal-private-methods (added, 7.18.6)

🆕 @​babel/plugin-proposal-private-property-in-object (added, 7.21.11)

🆕 @​babel/plugin-syntax-async-generators (added, 7.8.4)

🆕 @​babel/plugin-syntax-class-properties (added, 7.12.13)

🆕 @​babel/plugin-syntax-class-static-block (added, 7.14.5)

🆕 @​babel/plugin-syntax-decorators (added, 7.24.1)

🆕 @​babel/plugin-syntax-dynamic-import (added, 7.8.3)

🆕 @​babel/plugin-syntax-export-default-from (added, 7.24.1)

🆕 @​babel/plugin-syntax-export-namespace-from (added, 7.8.3)

🆕 @​babel/plugin-syntax-import-assertions (added, 7.24.1)

🆕 @​babel/plugin-syntax-import-attributes (added, 7.24.1)

🆕 @​babel/plugin-syntax-import-meta (added, 7.10.4)

🆕 @​babel/plugin-syntax-json-strings (added, 7.8.3)

🆕 @​babel/plugin-syntax-jsx (added, 7.24.1)

🆕 @​babel/plugin-syntax-logical-assignment-operators (added, 7.10.4)

🆕 @​babel/plugin-syntax-nullish-coalescing-operator (added, 7.8.3)

🆕 @​babel/plugin-syntax-numeric-separator (added, 7.10.4)

🆕 @​babel/plugin-syntax-object-rest-spread (added, 7.8.3)

🆕 @​babel/plugin-syntax-optional-catch-binding (added, 7.8.3)

🆕 @​babel/plugin-syntax-optional-chaining (added, 7.8.3)

🆕 @​babel/plugin-syntax-private-property-in-object (added, 7.14.5)

🆕 @​babel/plugin-syntax-top-level-await (added, 7.14.5)

🆕 @​babel/plugin-syntax-typescript (added, 7.24.1)

🆕 @​babel/plugin-syntax-unicode-sets-regex (added, 7.18.6)

🆕 @​babel/plugin-transform-arrow-functions (added, 7.24.1)

🆕 @​babel/plugin-transform-async-generator-functions (added, 7.24.3)

🆕 @​babel/plugin-transform-async-to-generator (added, 7.24.1)

🆕 @​babel/plugin-transform-block-scoped-functions (added, 7.24.1)

🆕 @​babel/plugin-transform-block-scoping (added, 7.24.4)

🆕 @​babel/plugin-transform-class-properties (added, 7.24.1)

🆕 @​babel/plugin-transform-class-static-block (added, 7.24.4)

🆕 @​babel/plugin-transform-classes (added, 7.24.1)

🆕 @​babel/plugin-transform-computed-properties (added, 7.24.1)

🆕 @​babel/plugin-transform-destructuring (added, 7.24.1)

🆕 @​babel/plugin-transform-dotall-regex (added, 7.24.1)

🆕 @​babel/plugin-transform-duplicate-keys (added, 7.24.1)

🆕 @​babel/plugin-transform-dynamic-import (added, 7.24.1)

🆕 @​babel/plugin-transform-exponentiation-operator (added, 7.24.1)

🆕 @​babel/plugin-transform-export-namespace-from (added, 7.24.1)

🆕 @​babel/plugin-transform-for-of (added, 7.24.1)

🆕 @​babel/plugin-transform-function-name (added, 7.24.1)

🆕 @​babel/plugin-transform-json-strings (added, 7.24.1)

🆕 @​babel/plugin-transform-literals (added, 7.24.1)

🆕 @​babel/plugin-transform-logical-assignment-operators (added, 7.24.1)

🆕 @​babel/plugin-transform-member-expression-literals (added, 7.24.1)

🆕 @​babel/plugin-transform-modules-amd (added, 7.24.1)

🆕 @​babel/plugin-transform-modules-commonjs (added, 7.24.1)

🆕 @​babel/plugin-transform-modules-systemjs (added, 7.24.1)

🆕 @​babel/plugin-transform-modules-umd (added, 7.24.1)

🆕 @​babel/plugin-transform-named-capturing-groups-regex (added, 7.22.5)

🆕 @​babel/plugin-transform-new-target (added, 7.24.1)

🆕 @​babel/plugin-transform-nullish-coalescing-operator (added, 7.24.1)

🆕 @​babel/plugin-transform-numeric-separator (added, 7.24.1)

🆕 @​babel/plugin-transform-object-rest-spread (added, 7.24.1)

🆕 @​babel/plugin-transform-object-super (added, 7.24.1)

🆕 @​babel/plugin-transform-optional-catch-binding (added, 7.24.1)

🆕 @​babel/plugin-transform-optional-chaining (added, 7.24.1)

🆕 @​babel/plugin-transform-parameters (added, 7.24.1)

🆕 @​babel/plugin-transform-private-methods (added, 7.24.1)

🆕 @​babel/plugin-transform-private-property-in-object (added, 7.24.1)

🆕 @​babel/plugin-transform-property-literals (added, 7.24.1)

🆕 @​babel/plugin-transform-react-display-name (added, 7.24.1)

🆕 @​babel/plugin-transform-react-jsx (added, 7.23.4)

🆕 @​babel/plugin-transform-react-jsx-development (added, 7.22.5)

🆕 @​babel/plugin-transform-react-pure-annotations (added, 7.24.1)

🆕 @​babel/plugin-transform-regenerator (added, 7.24.1)

🆕 @​babel/plugin-transform-reserved-words (added, 7.24.1)

🆕 @​babel/plugin-transform-shorthand-properties (added, 7.24.1)

🆕 @​babel/plugin-transform-spread (added, 7.24.1)

🆕 @​babel/plugin-transform-sticky-regex (added, 7.24.1)

🆕 @​babel/plugin-transform-template-literals (added, 7.24.1)

🆕 @​babel/plugin-transform-typeof-symbol (added, 7.24.1)

🆕 @​babel/plugin-transform-typescript (added, 7.24.4)

🆕 @​babel/plugin-transform-unicode-escapes (added, 7.24.1)

🆕 @​babel/plugin-transform-unicode-property-regex (added, 7.24.1)

🆕 @​babel/plugin-transform-unicode-regex (added, 7.24.1)

🆕 @​babel/plugin-transform-unicode-sets-regex (added, 7.24.1)

🆕 @​babel/preset-env (added, 7.24.4)

🆕 @​babel/preset-modules (added, 0.1.6-no-external-plugins)

🆕 @​babel/preset-react (added, 7.24.1)

🆕 @​babel/preset-typescript (added, 7.24.1)

🆕 @​babel/register (added, 7.23.7)

🆕 @​babel/regjsgen (added, 0.8.0)

🆕 @​babel/runtime (added, 7.24.4)

🆕 @​babel/template (added, 7.24.0)

🆕 @​babel/traverse (added, 7.24.1)

🆕 @​babel/types (added, 7.24.0)

🆕 @​cnakazawa/watch (added, 1.0.4)

🆕 @​colors/colors (added, 1.5.0)

🆕 @​discoveryjs/json-ext (added, 0.5.7)

🆕 @​gar/promisify (added, 1.1.3)

🆕 @​istanbuljs/load-nyc-config (added, 1.1.0)

🆕 @​istanbuljs/schema (added, 0.1.3)

🆕 @​jest/transform (added, 26.6.2)

🆕 @​jest/types (added, 26.6.2)

🆕 @​jridgewell/gen-mapping (added, 0.3.5)

🆕 @​jridgewell/resolve-uri (added, 3.1.2)

🆕 @​jridgewell/set-array (added, 1.2.1)

🆕 @​jridgewell/source-map (added, 0.3.6)

🆕 @​jridgewell/sourcemap-codec (added, 1.4.15)

🆕 @​jridgewell/trace-mapping (added, 0.3.25)

🆕 @​mdx-js/mdx (added, 1.6.22)

🆕 @​mdx-js/react (added, 1.6.22)

🆕 @​mdx-js/util (added, 1.6.22)

🆕 @​mrmlnc/readdir-enhanced (added, 2.2.1)

🆕 @​nodelib/fs.scandir (added, 2.1.5)

🆕 @​nodelib/fs.stat (added, 1.1.3)

🆕 @​nodelib/fs.walk (added, 1.2.8)

🆕 @​npmcli/fs (added, 1.1.1)

🆕 @​npmcli/move-file (added, 1.1.2)

🆕 @​storybook/addon-actions (added, 6.5.16)

🆕 @​storybook/addon-backgrounds (added, 6.5.16)

🆕 @​storybook/addon-controls (added, 6.5.16)

🆕 @​storybook/addon-docs (added, 6.5.16)

🆕 @​storybook/addon-essentials (added, 6.5.16)

🆕 @​storybook/addon-links (added, 6.5.16)

🆕 @​storybook/addon-measure (added, 6.5.16)

🆕 @​storybook/addon-outline (added, 6.5.16)

🆕 @​storybook/addon-toolbars (added, 6.5.16)

🆕 @​storybook/addon-viewport (added, 6.5.16)

🆕 @​storybook/addons (added, 6.5.16)

🆕 @​storybook/api (added, 6.5.16)

🆕 @​storybook/builder-webpack4 (added, 6.5.16)

🆕 @​storybook/channel-postmessage (added, 6.5.16)

🆕 @​storybook/channel-websocket (added, 6.5.16)

🆕 @​storybook/channels (added, 6.5.16)

🆕 @​storybook/client-api (added, 6.5.16)

🆕 @​storybook/client-logger (added, 6.5.16)

🆕 @​storybook/components (added, 6.5.16)

🆕 @​storybook/core (added, 6.5.16)

🆕 @​storybook/core-client (added, 6.5.16)

🆕 @​storybook/core-common (added, 6.5.16)

🆕 @​storybook/core-events (added, 6.5.16)

🆕 @​storybook/core-server (added, 6.5.16)

🆕 @​storybook/csf (added, 0.0.2--canary.4566f4d.1)

🆕 @​storybook/csf-tools (added, 6.5.16)

🆕 @​storybook/docs-tools (added, 6.5.16)

🆕 @​storybook/html (added, 6.5.16)

🆕 @​storybook/manager-webpack4 (added, 6.5.16)

🆕 @​storybook/mdx1-csf (added, 0.0.1)

🆕 @​storybook/node-logger (added, 6.5.16)

🆕 @​storybook/postinstall (added, 6.5.16)

🆕 @​storybook/preview-web (added, 6.5.16)

🆕 @​storybook/router (added, 6.5.16)

🆕 @​storybook/semver (added, 7.3.2)

🆕 @​storybook/source-loader (added, 6.5.16)

🆕 @​storybook/store (added, 6.5.16)

🆕 @​storybook/telemetry (added, 6.5.16)

🆕 @​storybook/theming (added, 6.5.16)

🆕 @​storybook/ui (added, 6.5.16)

🆕 @​types/glob (added, 8.1.0)

🆕 @​types/graceful-fs (added, 4.1.9)

🆕 @​types/hast (added, 2.3.10)

🆕 @​types/html-minifier-terser (added, 5.1.2)

🆕 @​types/is-function (added, 1.0.3)

🆕 @​types/istanbul-lib-coverage (added, 2.0.6)

🆕 @​types/istanbul-lib-report (added, 3.0.3)

🆕 @​types/istanbul-reports (added, 3.0.4)

🆕 @​types/json-schema (added, 7.0.15)

🆕 @​types/lodash (added, 4.17.0)

🆕 @​types/mdast (added, 3.0.15)

🆕 @​types/minimatch (added, 5.1.2)

🆕 @​types/node (added, 16.18.96)

🆕 @​types/node-fetch (added, 2.6.11)

🆕 @​types/normalize-package-data (added, 2.4.4)

🆕 @​types/npmlog (added, 4.1.6)

🆕 @​types/parse-json (added, 4.0.2)

🆕 @​types/parse5 (added, 5.0.3)

🆕 @​types/pretty-hrtime (added, 1.0.3)

🆕 @​types/qs (added, 6.9.14)

🆕 @​types/source-list-map (added, 0.1.6)

🆕 @​types/tapable (added, 1.0.12)

🆕 @​types/uglify-js (added, 3.17.5)

🆕 @​types/unist (added, 2.0.10)

🆕 @​types/webpack (added, 4.41.38)

🆕 @​types/webpack-env (added, 1.18.4)

🆕 @​types/webpack-sources (added, 3.2.3)

🆕 @​types/yargs (added, 15.0.19)

🆕 @​types/yargs-parser (added, 21.0.3)

🆕 @​webassemblyjs/ast (added, 1.9.0)

🆕 @​webassemblyjs/floating-point-hex-parser (added, 1.9.0)

🆕 @​webassemblyjs/helper-api-error (added, 1.9.0)

🆕 @​webassemblyjs/helper-buffer (added, 1.9.0)

🆕 @​webassemblyjs/helper-code-frame (added, 1.9.0)

🆕 @​webassemblyjs/helper-fsm (added, 1.9.0)

🆕 @​webassemblyjs/helper-module-context (added, 1.9.0)

🆕 @​webassemblyjs/helper-wasm-bytecode (added, 1.9.0)

🆕 @​webassemblyjs/helper-wasm-section (added, 1.9.0)

🆕 @​webassemblyjs/ieee754 (added, 1.9.0)

🆕 @​webassemblyjs/leb128 (added, 1.9.0)

🆕 @​webassemblyjs/utf8 (added, 1.9.0)

🆕 @​webassemblyjs/wasm-edit (added, 1.9.0)

🆕 @​webassemblyjs/wasm-gen (added, 1.9.0)

🆕 @​webassemblyjs/wasm-opt (added, 1.9.0)

🆕 @​webassemblyjs/wasm-parser (added, 1.9.0)

🆕 @​webassemblyjs/wast-parser (added, 1.9.0)

🆕 @​webassemblyjs/wast-printer (added, 1.9.0)

🆕 @​xtuc/ieee754 (added, 1.2.0)

🆕 @​xtuc/long (added, 4.2.2)

🆕 address (added, 1.2.2)

🆕 aggregate-error (added, 3.1.0)

🆕 airbnb-js-shims (added, 2.2.1)

🆕 ajv (added, 6.12.6)

🆕 ajv-errors (added, 1.0.1)

🆕 ajv-keywords (added, 3.5.2)

🆕 ansi-align (added, 3.0.1)

🆕 ansi-colors (added, 3.2.4)

🆕 ansi-html-community (added, 0.0.8)

🆕 ansi-to-html (added, 0.6.15)

🆕 anymatch (added, 3.1.3)

🆕 app-root-dir (added, 1.0.2)

🆕 argparse (added, 1.0.10)

🆕 arr-diff (added, 4.0.0)

🆕 arr-flatten (added, 1.1.0)

🆕 arr-union (added, 3.1.0)

🆕 array-buffer-byte-length (added, 1.0.1)

🆕 array-find-index (added, 1.0.2)

🆕 array-includes (added, 3.1.8)

🆕 array-union (added, 1.0.2)

🆕 array-uniq (added, 1.0.3)

🆕 array-unique (added, 0.3.2)

🆕 array.prototype.flat (added, 1.3.2)

🆕 array.prototype.flatmap (added, 1.3.2)

🆕 array.prototype.map (added, 1.0.7)

🆕 array.prototype.reduce (added, 1.0.7)

🆕 arraybuffer.prototype.slice (added, 1.0.3)

🆕 arrify (added, 2.0.1)

🆕 asn1.js (added, 4.10.1)

🆕 assert (added, 1.5.1)

🆕 assign-symbols (added, 1.0.0)

🆕 async-each (added, 1.0.6)

🆕 asynckit (added, 0.4.0)

🆕 at-least-node (added, 1.0.0)

🆕 atob (added, 2.1.2)

🆕 available-typed-arrays (added, 1.0.7)

🆕 axios (added, 0.20.0)

🆕 babel-loader (added, 8.3.0)

🆕 babel-plugin-apply-mdx-type-prop (added, 1.6.22)

🆕 babel-plugin-extract-import-names (added, 1.6.22)

🆕 babel-plugin-istanbul (added, 6.1.1)

🆕 babel-plugin-macros (added, 3.1.0)

🆕 babel-plugin-polyfill-corejs2 (added, 0.4.10)

🆕 babel-plugin-polyfill-corejs3 (added, 0.1.7)

🆕 babel-plugin-polyfill-regenerator (added, 0.6.1)

🆕 bail (added, 1.0.5)

🆕 base (added, 0.11.2)

🆕 better-opn (added, 2.1.1)

🆕 big-integer (added, 1.6.52)

🆕 big.js (added, 5.2.2)

🆕 binary-extensions (added, 2.3.0)

🆕 bluebird (added, 3.7.2)

🆕 bn.js (added, 5.2.1)

🆕 boolbase (added, 1.0.0)

🆕 boxen (added, 5.1.2)

🆕 bplist-parser (added, 0.1.1)

🆕 braces (added, 3.0.2)

🆕 brorand (added, 1.1.0)

🆕 browserify-aes (added, 1.2.0)

🆕 browserify-cipher (added, 1.0.1)

🆕 browserify-des (added, 1.0.2)

🆕 browserify-rsa (added, 4.1.0)

🆕 browserify-sign (added, 4.2.3)

🆕 browserify-zlib (added, 0.2.0)

🆕 bser (added, 2.1.1)

🆕 buffer-from (added, 1.1.2)

🆕 buffer-xor (added, 1.0.3)

🆕 builtin-status-codes (added, 3.0.0)

🆕 cacache (added, 12.0.4)

🆕 cache-base (added, 1.0.1)

🆕 call-bind (added, 1.0.7)

🆕 call-me-maybe (added, 1.0.2)

🆕 callsites (added, 3.1.0)

🆕 camel-case (added, 4.1.2)

🆕 camelcase (added, 5.3.1)

🆕 camelcase-keys (added, 2.1.0)

🆕 capture-exit (added, 2.0.0)

🆕 case-sensitive-paths-webpack-plugin (added, 2.4.0)

🆕 ccount (added, 1.1.0)

🆕 character-entities (added, 1.2.4)

🆕 character-entities-legacy (added, 1.1.4)

🆕 character-reference-invalid (added, 1.1.4)

🆕 chokidar (added, 3.6.0)

🆕 chrome-trace-event (added, 1.0.3)

🆕 ci-info (added, 2.0.0)

🆕 cipher-base (added, 1.0.4)

🆕 class-utils (added, 0.3.6)

🆕 clean-css (added, 4.2.4)

🆕 clean-stack (added, 2.2.0)

🆕 cli-boxes (added, 2.2.1)

🆕 cli-table3 (added, 0.6.4)

🆕 clone-deep (added, 4.0.1)

🆕 collapse-white-space (added, 1.0.6)

🆕 collection-visit (added, 1.0.0)

🆕 color-support (added, 1.1.3)

🆕 combined-stream (added, 1.0.8)

🆕 comma-separated-tokens (added, 1.0.8)

🆕 commondir (added, 1.0.1)

🆕 component-emitter (added, 1.3.1)

🆕 compressible (added, 2.0.18)

🆕 compression (added, 1.7.4)

🆕 concat-stream (added, 1.6.2)

🆕 console-browserify (added, 1.2.0)

🆕 constants-browserify (added, 1.0.0)

🆕 convert-source-map (added, 2.0.0)

🆕 copy-concurrently (added, 1.0.5)

🆕 copy-descriptor (added, 0.1.1)

🆕 core-js (added, 3.36.1)

🆕 core-js-compat (added, 3.36.1)

🆕 cosmiconfig (added, 7.1.0)

🆕 cp-file (added, 7.0.0)

🆕 cpy (added, 8.1.2)

🆕 create-ecdh (added, 4.0.4)

🆕 create-hash (added, 1.2.0)

🆕 create-hmac (added, 1.1.7)

🆕 cross-spawn (added, 6.0.5)

🆕 crypto-browserify (added, 3.12.0)

🆕 css-loader (added, 3.6.0)

🆕 css-select (added, 4.3.0)

🆕 css-what (added, 6.1.0)

🆕 currently-unhandled (added, 0.4.1)

🆕 cyclist (added, 1.0.2)

🆕 data-view-buffer (added, 1.0.1)

🆕 data-view-byte-length (added, 1.0.1)

🆕 data-view-byte-offset (added, 1.0.0)

🆕 decamelize (added, 1.2.0)

🆕 decode-uri-component (added, 0.2.2)

🆕 deepmerge (added, 4.3.1)

🆕 default-browser-id (added, 1.0.4)

🆕 define-data-property (added, 1.1.4)

🆕 define-lazy-prop (added, 2.0.0)

🆕 define-properties (added, 1.2.1)

🆕 define-property (added, 2.0.2)

🆕 delayed-stream (added, 1.0.0)

🆕 des.js (added, 1.1.0)

🆕 detab (added, 2.0.4)

🆕 detect-package-manager (added, 2.0.1)

🆕 detect-port (added, 1.5.1)

🆕 diffie-hellman (added, 5.0.3)

🆕 dir-glob (added, 2.2.2)

🆕 doctrine (added, 3.0.0)

🆕 dom-converter (added, 0.2.0)

🆕 dom-serializer (added, 1.4.1)

🆕 dom-walk (added, 0.1.2)

🆕 domain-browser (added, 1.2.0)

🆕 domelementtype (added, 2.3.0)

🆕 domhandler (added, 4.3.1)

🆕 domutils (added, 2.8.0)

🆕 dot-case (added, 3.0.4)

🆕 dotenv (added, 8.6.0)

🆕 dotenv-expand (added, 5.1.0)

🆕 duplexify (added, 3.7.1)

🆕 elliptic (added, 6.5.5)

🆕 emoji-regex (added, 8.0.0)

🆕 emojis-list (added, 3.0.0)

🆕 enhanced-resolve (added, 4.5.0)

🆕 entities (added, 2.2.0)

🆕 errno (added, 0.1.8)

🆕 error-ex (added, 1.3.2)

🆕 es-abstract (added, 1.23.3)

🆕 es-array-method-boxes-properly (added, 1.0.0)

🆕 es-define-property (added, 1.0.0)

🆕 es-errors (added, 1.3.0)

🆕 es-get-iterator (added, 1.1.3)

🆕 es-object-atoms (added, 1.0.0)

🆕 es-set-tostringtag (added, 2.0.3)

🆕 es-shim-unscopables (added, 1.0.2)

🆕 es-to-primitive (added, 1.2.1)

🆕 es5-shim (added, 4.6.7)

🆕 es6-shim (added, 0.35.8)

🆕 eslint-scope (added, 4.0.3)

🆕 esprima (added, 4.0.1)

🆕 esrecurse (added, 4.3.0)

🆕 estraverse (added, 4.3.0)

🆕 esutils (added, 2.0.3)

🆕 events (added, 3.3.0)

🆕 evp_bytestokey (added, 1.0.3)

🆕 exec-sh (added, 0.3.6)

🆕 execa (added, 1.0.0)

🆕 expand-brackets (added, 2.1.4)

🆕 extend (added, 3.0.2)

🆕 extend-shallow (added, 3.0.2)

🆕 extglob (added, 2.0.4)

🆕 fast-deep-equal (added, 3.1.3)

🆕 fast-glob (added, 2.2.7)

🆕 fast-json-stable-stringify (added, 2.1.0)

🆕 fastq (added, 1.17.1)

🆕 fb-watchman (added, 2.0.2)

🆕 fetch-retry (added, 5.0.6)

🆕 figgy-pudding (added, 3.5.2)

🆕 file-loader (added, 6.2.0)

🆕 file-system-cache (added, 1.1.0)

🆕 fill-range (added, 7.0.1)

🆕 find-cache-dir (added, 2.1.0)

🆕 find-up (added, 4.1.0)

🆕 flush-write-stream (added, 1.1.1)

🆕 follow-redirects (added, 1.15.6)

🆕 for-each (added, 0.3.3)

🆕 for-in (added, 1.0.2)

🆕 fork-ts-checker-webpack-plugin (added, 6.5.3)

🆕 form-data (added, 4.0.0)

🆕 fragment-cache (added, 0.2.1)

🆕 from2 (added, 2.3.0)

🆕 fs-monkey (added, 1.0.5)

🆕 fs-write-stream-atomic (added, 1.0.10)

🆕 fsevents (added, 2.3.3)

🆕 function-bind (added, 1.1.2)

🆕 function.prototype.name (added, 1.1.6)

🆕 functions-have-names (added, 1.2.3)

🆕 gensync (added, 1.0.0-beta.2)

🆕 get-intrinsic (added, 1.2.4)

🆕 get-package-type (added, 0.1.0)

🆕 get-stdin (added, 4.0.1)

🆕 get-stream (added, 4.1.0)

🆕 get-symbol-description (added, 1.0.2)

🆕 get-value (added, 2.0.6)

🆕 github-slugger (added, 1.5.0)

🆕 glob-parent (added, 5.1.2)

🆕 glob-promise (added, 3.4.0)

🆕 glob-to-regexp (added, 0.3.0)

🆕 global (added, 4.4.0)

🆕 globals (added, 11.12.0)

🆕 globalthis (added, 1.0.3)

🆕 globby (added, 11.1.0)

🆕 gopd (added, 1.0.1)

🆕 handlebars (added, 4.7.8)

🆕 has-bigints (added, 1.0.2)

🆕 has-glob (added, 1.0.0)

🆕 has-property-descriptors (added, 1.0.2)

🆕 has-proto (added, 1.0.3)

🆕 has-symbols (added, 1.0.3)

🆕 has-tostringtag (added, 1.0.2)

🆕 has-value (added, 1.0.0)

🆕 has-values (added, 1.0.0)

🆕 hash-base (added, 3.1.0)

🆕 hash.js (added, 1.1.7)

🆕 hasown (added, 2.0.2)

🆕 hast-to-hyperscript (added, 9.0.1)

🆕 hast-util-from-parse5 (added, 6.0.1)

🆕 hast-util-parse-selector (added, 2.2.5)

🆕 hast-util-raw (added, 6.0.1)

🆕 hast-util-to-parse5 (added, 6.0.0)

🆕 hastscript (added, 6.0.0)

🆕 he (added, 1.2.0)

🆕 hmac-drbg (added, 1.0.1)

🆕 hosted-git-info (added, 2.8.9)

🆕 html-entities (added, 2.5.2)

🆕 html-loader (added, 1.3.2)

🆕 html-minifier-terser (added, 5.1.1)

🆕 html-void-elements (added, 1.0.5)

🆕 html-webpack-plugin (added, 4.5.2)

🆕 htmlparser2 (added, 6.1.0)

🆕 https-browserify (added, 1.0.0)

🆕 human-signals (added, 2.1.0)

🆕 icss-utils (added, 4.1.1)

🆕 iferr (added, 0.1.5)

🆕 ignore (added, 4.0.6)

🆕 import-fresh (added, 3.3.0)

🆕 imurmurhash (added, 0.1.4)

🆕 indent-string (added, 4.0.0)

🆕 infer-owner (added, 1.0.4)

🆕 inline-style-parser (added, 0.1.1)

🆕 internal-slot (added, 1.0.7)

🆕 interpret (added, 2.2.0)

🆕 ip (added, 2.0.1)

🆕 is-absolute-url (added, 3.0.3)

🆕 is-accessor-descriptor (added, 1.0.1)

🆕 is-alphabetical (added, 1.0.4)

🆕 is-alphanumerical (added, 1.0.4)

🆕 is-arguments (added, 1.1.1)

🆕 is-array-buffer (added, 3.0.4)

🆕 is-bigint (added, 1.0.4)

🆕 is-binary-path (added, 2.1.0)

🆕 is-boolean-object (added, 1.1.2)

🆕 is-buffer (added, 1.1.6)

🆕 is-callable (added, 1.2.7)

🆕 is-ci (added, 2.0.0)

🆕 is-core-module (added, 2.13.1)

🆕 is-data-descriptor (added, 1.0.1)

🆕 is-data-view (added, 1.0.1)

🆕 is-date-object (added, 1.0.5)

🆕 is-decimal (added, 1.0.4)

🆕 is-descriptor (added, 0.1.7)

🆕 is-docker (added, 2.2.1)

🆕 is-dom (added, 1.1.0)

🆕 is-extendable (added, 0.1.1)

🆕 is-extglob (added, 2.1.1)

🆕 is-finite (added, 1.1.0)

🆕 is-function (added, 1.0.2)

🆕 is-glob (added, 4.0.3)

🆕 is-hexadecimal (added, 1.0.4)

🆕 is-map (added, 2.0.3)

🆕 is-negative-zero (added, 2.0.3)

🆕 is-number (added, 7.0.0)

🆕 is-number-object (added, 1.0.7)

🆕 is-object (added, 1.0.2)

🆕 is-plain-obj (added, 2.1.0)

🆕 is-plain-object (added, 2.0.4)

🆕 is-regex (added, 1.1.4)

🆕 is-set (added, 2.0.3)

🆕 is-shared-array-buffer (added, 1.0.3)

🆕 is-stream (added, 1.1.0)

🆕 is-string (added, 1.0.7)

🆕 is-symbol (added, 1.0.4)

🆕 is-typed-array (added, 1.1.13)

🆕 is-typedarray (added, 1.0.0)

🆕 is-utf8 (added, 0.2.1)

🆕 is-weakref (added, 1.0.2)

🆕 is-whitespace-character (added, 1.0.4)

🆕 is-window (added, 1.0.2)

🆕 is-windows (added, 1.0.2)

🆕 is-word-character (added, 1.0.4)

🆕 is-wsl (added, 1.1.0)

🆕 isexe (added, 2.0.0)

🆕 isobject (added, 4.0.0)

🆕 isomorphic-unfetch (added, 3.1.0)

🆕 istanbul-lib-coverage (added, 3.2.2)

🆕 istanbul-lib-instrument (added, 5.2.1)

🆕 iterate-iterator (added, 1.0.2)

🆕 iterate-value (added, 1.0.2)

🆕 jest-haste-map (added, 26.6.2)

🆕 jest-regex-util (added, 26.0.0)

🆕 jest-serializer (added, 26.6.2)

🆕 jest-util (added, 26.6.2)

🆕 jest-worker (added, 26.6.2)

🆕 js-string-escape (added, 1.0.1)

🆕 js-tokens (added, 4.0.0)

🆕 js-yaml (added, 3.14.1)

🆕 jsesc (added, 2.5.2)

🆕 json-parse-better-errors (added, 1.0.2)

🆕 json-parse-even-better-errors (added, 2.3.1)

🆕 json-schema-traverse (added, 0.4.1)

🆕 json5 (added, 2.2.3)

🆕 junk (added, 3.1.0)

🆕 kind-of (added, 6.0.3)

🆕 kleur (added, 3.0.3)

🆕 klona (added, 2.0.6)

🆕 lazy-universal-dotenv (added, 3.0.1)

🆕 lines-and-columns (added, 1.2.4)

🆕 load-json-file (added, 1.1.0)

🆕 loader-runner (added, 2.4.0)

🆕 loader-utils (added, 2.0.4)

🆕 locate-path (added, 5.0.0)

🆕 lodash.debounce (added, 4.0.8)

🆕 lodash.uniq (added, 4.5.0)

🆕 loose-envify (added, 1.4.0)

🆕 loud-rejection (added, 1.6.0)

🆕 lower-case (added, 2.0.2)

🆕 lru-cache (added, 5.1.1)

🆕 make-dir (added, 2.1.0)

🆕 makeerror (added, 1.0.12)

🆕 map-cache (added, 0.2.2)

🆕 map-obj (added, 1.0.1)

🆕 map-or-similar (added, 1.5.0)

🆕 map-visit (added, 1.0.0)

🆕 markdown-escapes (added, 1.0.4)

🆕 md5.js (added, 1.3.5)

🆕 mdast-squeeze-paragraphs (added, 4.0.0)

🆕 mdast-util-definitions (added, 4.0.0)

🆕 mdast-util-to-hast (added, 10.0.1)

🆕 mdast-util-to-string (added, 1.1.0)

🆕 mdurl (added, 1.0.1)

🆕 memfs (added, 3.5.3)

🆕 memoizerific (added, 1.11.3)

🆕 memory-fs (added, 0.4.1)

🆕 meow (added, 3.7.0)

🆕 merge-stream (added, 2.0.0)

🆕 merge2 (added, 1.4.1)

🆕 microevent.ts (added, 0.1.1)

🆕 micromatch (added, 3.1.10)

🆕 miller-rabin (added, 4.0.1)

🆕 mimic-fn (added, 2.1.0)

🆕 min-document (added, 2.19.0)

🆕 minimalistic-assert (added, 1.0.1)

🆕 minimalistic-crypto-utils (added, 1.0.1)

🆕 minipass-collect (added, 1.0.2)

🆕 minipass-flush (added, 1.0.5)

🆕 minipass-pipeline (added, 1.2.4)

🆕 mississippi (added, 3.0.0)

🆕 mixin-deep (added, 1.3.2)

🆕 move-concurrently (added, 1.0.1)

🆕 nanoid (added, 3.3.7)

🆕 nanomatch (added, 1.2.13)

🆕 neo-async (added, 2.6.2)

🆕 nested-error-stacks (added, 2.1.1)

🆕 nice-try (added, 1.0.5)

🆕 no-case (added, 3.0.4)

🆕 node-int64 (added, 0.4.0)

🆕 node-libs-browser (added, 2.2.1)

🆕 normalize-package-data (added, 2.5.0)

🆕 normalize-path (added, 3.0.0)

🆕 npm-run-path (added, 2.0.2)

🆕 nth-check (added, 2.1.1)

🆕 object-copy (added, 0.1.0)

🆕 object-inspect (added, 1.13.1)

🆕 object-keys (added, 1.1.1)

🆕 object-visit (added, 1.0.1)

🆕 object.assign (added, 4.1.5)

🆕 object.entries (added, 1.1.8)

🆕 object.fromentries (added, 2.0.8)

🆕 object.getownpropertydescriptors (added, 2.1.8)

🆕 object.pick (added, 1.3.0)

🆕 object.values (added, 1.2.0)

🆕 on-headers (added, 1.0.2)

🆕 onetime (added, 5.1.2)

🆕 open (added, 8.4.2)

🆕 os-browserify (added, 0.3.0)

🆕 os-homedir (added, 1.0.2)

🆕 p-all (added, 2.1.0)

🆕 p-event (added, 4.2.0)

🆕 p-filter (added, 2.1.0)

🆕 p-finally (added, 1.0.0)

🆕 p-limit (added, 2.3.0)

🆕 p-locate (added, 4.1.0)

🆕 p-map (added, 4.0.0)

🆕 p-timeout (added, 3.2.0)

🆕 p-try (added, 2.2.0)

🆕 pako (added, 1.0.11)

🆕 parallel-transform (added, 1.2.0)

🆕 param-case (added, 3.0.4)

🆕 parent-module (added, 1.0.1)

🆕 parse-asn1 (added, 5.1.7)

🆕 parse-entities (added, 2.0.0)

🆕 parse-json (added, 5.2.0)

🆕 parse5 (added, 6.0.1)

🆕 pascal-case (added, 3.1.2)

🆕 pascalcase (added, 0.1.1)

🆕 path-browserify (added, 0.0.1)

🆕 path-dirname (added, 1.0.2)

🆕 path-exists (added, 4.0.0)

🆕 path-key (added, 2.0.1)

🆕 path-type (added, 4.0.0)

🆕 pbkdf2 (added, 3.1.2)

🆕 picocolors (added, 1.0.0)

🆕 picomatch (added, 2.3.1)

🆕 pify (added, 4.0.1)

🆕 pinkie (added, 2.0.4)

🆕 pinkie-promise (added, 2.0.1)

🆕 pirates (added, 4.0.6)

🆕 pkg-dir (added, 5.0.0)

🆕 pnp-webpack-plugin (added, 1.6.4)

🆕 polished (added, 4.3.1)

🆕 posix-character-classes (added, 0.1.1)

🆕 possible-typed-array-names (added, 1.0.0)

🆕 postcss-flexbugs-fixes (added, 4.2.1)

🆕 postcss-loader (added, 4.3.0)

🆕 postcss-modules-extract-imports (added, 2.0.0)

🆕 postcss-modules-local-by-default (added, 3.0.3)

🆕 postcss-modules-scope (added, 2.2.0)

🆕 postcss-modules-values (added, 3.0.0)

🆕 prettier (added, 2.3.0)

🆕 pretty-error (added, 2.1.2)

🆕 process (added, 0.11.10)

🆕 promise-inflight (added, 1.0.1)

🆕 promise.allsettled (added, 1.0.7)

🆕 promise.prototype.finally (added, 3.1.8)

🆕 prompts (added, 2.4.2)

🆕 prop-types (added, 15.8.1)

🆕 property-information (added, 5.6.0)

🆕 prr (added, 1.0.1)

🆕 public-encrypt (added, 4.0.3)

🆕 pumpify (added, 1.5.1)

🆕 punycode (added, 2.3.1)

🆕 querystring-es3 (added, 0.2.1)

🆕 queue-microtask (added, 1.2.3)

🆕 ramda (added, 0.28.0)

🆕 randombytes (added, 2.1.0)

🆕 randomfill (added, 1.0.4)

🆕 raw-loader (added, 4.0.2)

🆕 react (added, 16.14.0)

🆕 react-dom (added, 16.14.0)

🆕 react-inspector (added, 5.1.1)

🆕 react-is (added, 16.13.1)

🆕 read-pkg (added, 5.2.0)

🆕 read-pkg-up (added, 7.0.1)

🆕 readdirp (added, 3.6.0)

🆕 redent (added, 1.0.0)

🆕 regenerate (added, 1.4.2)

🆕 regenerate-unicode-properties (added, 10.1.1)

🆕 regenerator-runtime (added, 0.13.11)

🆕 regenerator-transform (added, 0.15.2)

🆕 regex-not (added, 1.0.2)

🆕 regexp.prototype.flags (added, 1.5.2)

🆕 regexpu-core (added, 5.3.2)

🆕 regjsparser (added, 0.9.1)

🆕 relateurl (added, 0.2.7)

🆕 remark-external-links (added, 8.0.0)

🆕 remark-footnotes (added, 2.0.0)

🆕 remark-mdx (added, 1.6.22)

🆕 remark-parse (added, 8.0.3)

🆕 remark-slug (added, 6.1.0)

🆕 remark-squeeze-paragraphs (added, 4.0.0)

🆕 remove-trailing-separator (added, 1.1.0)

🆕 renderkid (added, 2.0.7)

🆕 repeat-element (added, 1.1.4)

🆕 repeat-string (added, 1.6.1)

🆕 repeating (added, 2.0.1)

🆕 resolve-from (added, 5.0.0)

🆕 resolve-url (added, 0.2.1)

🆕 ret (added, 0.1.15)

🆕 reusify (added, 1.0.4)

🆕 rimraf (added, 2.7.1)

🆕 ripemd160 (added, 2.0.2)

🆕 rsvp (added, 4.8.5)

🆕 run-parallel (added, 1.2.0)

🆕 run-queue (added, 1.0.3)

🆕 safe-array-concat (added, 1.1.2)

🆕 safe-regex (added, 1.1.0)

🆕 safe-regex-test (added, 1.0.3)

🆕 sane (added, 4.1.0)

🆕 scheduler (added, 0.19.1)

🆕 schema-utils (added, 2.7.1)

🆕 serialize-javascript (added, 4.0.0)

🆕 serve-favicon (added, 2.5.0)

🆕 set-function-length (added, 1.2.2)

🆕 set-function-name (added, 2.0.2)

🆕 set-value (added, 2.0.1)

🆕 setimmediate (added, 1.0.5)

🆕 sha.js (added, 2.4.11)

🆕 shallow-clone (added, 3.0.1)

🆕 shebang-command (added, 1.2.0)

🆕 shebang-regex (added, 1.0.0)

🆕 side-channel (added, 1.0.6)

🆕 sisteransi (added, 1.0.5)

🆕 slash (added, 3.0.0)

🆕 snapdragon (added, 0.8.2)

🆕 snapdragon-node (added, 2.1.1)

🆕 snapdragon-util (added, 3.0.1)

🆕 source-list-map (added, 2.0.1)

🆕 source-map-resolve (added, 0.5.3)

🆕 source-map-support (added, 0.5.21)

🆕 source-map-url (added, 0.4.1)

🆕 space-separated-tokens (added, 1.1.5)

🆕 spdx-correct (added, 3.2.0)

🆕 spdx-exceptions (added, 2.5.0)

🆕 spdx-expression-parse (added, 3.0.1)

🆕 spdx-license-ids (added, 3.0.17)

🆕 split-string (added, 3.1.0)

🆕 sprintf-js (added, 1.0.3)

🆕 ssri (added, 6.0.2)

🆕 stable (added, 0.1.8)

🆕 state-toggle (added, 1.0.3)

🆕 static-extend (added, 0.1.2)

🆕 stop-iteration-iterator (added, 1.0.0)

🆕 store2 (added, 2.14.3)

🆕 stream-browserify (added, 2.0.2)

🆕 stream-each (added, 1.2.3)

🆕 stream-http (added, 2.8.3)

🆕 stream-shift (added, 1.0.3)

🆕 string.prototype.matchall (added, 4.0.11)

🆕 string.prototype.padend (added, 3.1.6)

🆕 string.prototype.padstart (added, 3.1.6)

🆕 string.prototype.trim (added, 1.2.9)

🆕 string.prototype.trimend (added, 1.0.8)

🆕 string.prototype.trimstart (added, 1.0.8)

🆕 strip-bom (added, 2.0.0)

🆕 strip-eof (added, 1.0.0)

🆕 strip-final-newline (added, 2.0.0)

🆕 strip-indent (added, 1.0.1)

🆕 style-loader (added, 1.3.0)

🆕 style-to-object (added, 0.3.0)

🆕 supports-preserve-symlinks-flag (added, 1.0.0)

🆕 symbol.prototype.description (added, 1.0.6)

🆕 synchronous-promise (added, 2.0.17)

🆕 tapable (added, 1.1.3)

🆕 telejson (added, 6.0.8)

🆕 terser (added, 4.8.1)

🆕 terser-webpack-plugin (added, 1.4.5)

🆕 test-exclude (added, 6.0.0)

🆕 through2 (added, 2.0.5)

🆕 timers-browserify (added, 2.0.12)

🆕 tmpl (added, 1.0.5)

🆕 to-arraybuffer (added, 1.0.1)

🆕 to-fast-properties (added, 2.0.0)

🆕 to-object-path (added, 0.3.0)

🆕 to-regex (added, 3.0.2)

🆕 to-regex-range (added, 5.0.1)

🆕 tr46 (added, 0.0.3)

🆕 trim (added, 0.0.1)

🆕 trim-newlines (added, 1.0.0)

🆕 trim-trailing-lines (added, 1.1.4)

🆕 trough (added, 1.0.5)

🆕 ts-dedent (added, 2.2.0)

🆕 ts-pnp (added, 1.2.0)

🆕 tslib (added, 2.6.2)

🆕 tty-browserify (added, 0.0.0)

🆕 type-fest (added, 0.8.1)

🆕 typed-array-buffer (added, 1.0.2)

🆕 typed-array-byte-length (added, 1.0.1)

🆕 typed-array-byte-offset (added, 1.0.2)

🆕 typed-array-length (added, 1.0.6)

🆕 typedarray (added, 0.0.6)

🆕 typedarray-to-buffer (added, 3.1.5)

🆕 uglify-js (added, 3.17.4)

🆕 unbox-primitive (added, 1.0.2)

🆕 unfetch (added, 4.2.0)

🆕 unherit (added, 1.1.3)

🆕 unicode-canonical-property-names-ecmascript (added, 2.0.0)

🆕 unicode-match-property-ecmascript (added, 2.0.0)

🆕 unicode-match-property-value-ecmascript (added, 2.1.0)

🆕 unicode-property-aliases-ecmascript (added, 2.1.0)

🆕 unified (added, 9.2.0)

🆕 union-value (added, 1.0.1)

🆕 unique-filename (added, 1.1.1)

🆕 unique-slug (added, 2.0.2)

🆕 unist-builder (added, 2.0.3)

🆕 unist-util-generated (added, 1.1.6)

🆕 unist-util-is (added, 4.1.0)

🆕 unist-util-position (added, 3.1.0)

🆕 unist-util-remove (added, 2.1.0)

🆕 unist-util-remove-position (added, 2.0.1)

🆕 unist-util-stringify-position (added, 2.0.3)

🆕 unist-util-visit (added, 2.0.3)

🆕 unist-util-visit-parents (added, 3.1.1)

🆕 unset-value (added, 1.0.0)

🆕 untildify (added, 2.1.0)

🆕 upath (added, 1.2.0)

🆕 update-browserslist-db (added, 1.0.13)

🆕 uri-js (added, 4.4.1)

🆕 urix (added, 0.1.0)

🆕 url (added, 0.11.3)

🆕 url-loader (added, 4.1.1)

🆕 use (added, 3.1.1)

🆕 util (added, 0.11.1)

🆕 util.promisify (added, 1.0.0)

🆕 utila (added, 0.4.0)

🆕 uuid (added, 3.4.0)

🆕 uuid-browser (added, 3.1.0)

🆕 validate-npm-package-license (added, 3.0.4)

🆕 vfile (added, 4.2.1)

🆕 vfile-location (added, 3.2.0)

🆕 vfile-message (added, 2.0.4)

🆕 vm-browserify (added, 1.1.2)

🆕 walker (added, 1.0.8)

🆕 watchpack (added, 1.7.5)

🆕 watchpack-chokidar2 (added, 2.0.1)

🆕 web-namespaces (added, 1.1.4)

🆕 webidl-conversions (added, 3.0.1)

🆕 webpack (added, 4.47.0)

🆕 webpack-dev-middleware (added, 3.7.3)

🆕 webpack-filter-warnings-plugin (added, 1.2.1)

🆕 webpack-hot-middleware (added, 2.26.1)

🆕 webpack-log (added, 2.0.0)

🆕 webpack-sources (added, 1.4.3)

🆕 webpack-virtual-modules (added, 0.2.2)

🆕 whatwg-url (added, 5.0.0)

🆕 which (added, 1.3.1)

🆕 which-boxed-primitive (added, 1.0.2)

🆕 which-typed-array (added, 1.1.15)

🆕 widest-line (added, 3.1.0)

🆕 wordwrap (added, 1.0.0)

🆕 worker-farm (added, 1.7.0)

🆕 worker-rpc (added, 0.1.1)

🆕 wrap-ansi (added, 7.0.0)

🆕 write-file-atomic (added, 3.0.3)

🆕 ws (added, 8.16.0)

🆕 x-default-browser (added, 0.4.0)

🆕 y18n (added, 4.0.3)

🆕 yaml (added, 1.10.2)

🆕 yocto-queue (added, 0.1.0)

🆕 zwitch (added, 1.0.5)


Depfu Status

Depfu will automatically keep this PR conflict-free, as long as you don't add any commits to this branch yourself. You can also trigger a rebase manually by commenting with @depfu rebase.

All Depfu comment commands
@​depfu rebase
Rebases against your default branch and redoes this update
@​depfu recreate
Recreates this PR, overwriting any edits that you've made to it
@​depfu merge
Merges this PR once your tests are passing and conflicts are resolved
@​depfu cancel merge
Cancels automatic merging of this PR
@​depfu close
Closes this PR and deletes the branch
@​depfu reopen
Restores the branch and reopens this PR (if it's closed)
@​depfu pause
Ignores all future updates for this dependency and closes this PR
@​depfu pause [minor|major]
Ignores all future minor/major updates for this dependency and closes this PR
@​depfu resume
Future versions of this dependency will create PRs again (leaves this PR as is)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants