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

[plugin] RUM plugin #78

Merged
merged 60 commits into from
Jul 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
60 commits
Select commit Hold shift + click to select a range
30871ce
Add sourcemaps plugin
yoannmoinet Jun 24, 2024
fb56bc8
Automation
yoannmoinet Jun 20, 2024
e824eef
Update when we inject git data
yoannmoinet Jun 20, 2024
263640f
Update packages/plugins/rum/src/sourcemaps/files.ts
yoannmoinet Jun 24, 2024
19e3862
Add intake override and test it
yoannmoinet Jun 24, 2024
38bc7d7
Merge remote-tracking branch 'origin/master' into yoann/rum-plugin
yoannmoinet Jun 25, 2024
e69c1b8
Run integrity
yoannmoinet Jun 25, 2024
8d90ef3
Update endPoint usage
yoannmoinet Jun 25, 2024
9271c7c
Update how we compute the body
yoannmoinet Jun 26, 2024
a9ce05f
Remove form-data dependency
yoannmoinet Jun 27, 2024
afb82ea
Add type to File
yoannmoinet Jun 27, 2024
65eea4a
Install nock
yoannmoinet Jun 27, 2024
12508da
Fix bail calls
yoannmoinet Jun 27, 2024
7d6f49d
Use a mock server instead of mocking fetch
yoannmoinet Jun 27, 2024
5766384
Update licenses
yoannmoinet Jun 27, 2024
07af3f4
Update API's url in tests
yoannmoinet Jun 27, 2024
19fd428
Mock more requests
yoannmoinet Jun 28, 2024
d98411a
Fix unplugin
yoannmoinet Jun 28, 2024
b1ceafe
Update licenses
yoannmoinet Jun 28, 2024
1b54c59
Do not ignore patches
yoannmoinet Jun 28, 2024
f36076c
Fix types name
yoannmoinet Jul 1, 2024
f4c6b67
Fix unplugin patch
yoannmoinet Jul 1, 2024
78d4c25
Add an 'info' level to log
yoannmoinet Jul 1, 2024
794287b
Fix bundling issue with module.exports overrides
yoannmoinet Jul 1, 2024
7b75f29
Add more logs
yoannmoinet Jul 1, 2024
62e986b
Update types
yoannmoinet Jul 4, 2024
08ad0d4
Better log for missing tracked files
yoannmoinet Jul 4, 2024
9412e71
Update esbuild webpack rollup
yoannmoinet Jul 9, 2024
62511af
Refactor tests for telemetry
yoannmoinet Jul 9, 2024
b7ac51c
Update tsconfig for better esm support
yoannmoinet Jul 9, 2024
6b38aa0
Fix @dd/tools exports
yoannmoinet Jul 9, 2024
7a0a011
Move test constants
yoannmoinet Jul 9, 2024
f7aa680
Update prefix type
yoannmoinet Jul 9, 2024
0ca8c30
Add outputFiles to globalContext
yoannmoinet Jul 9, 2024
14d5160
Fix telemetry tests
yoannmoinet Jul 9, 2024
94439e3
Add webpack4 support to outputFiles context
yoannmoinet Jul 9, 2024
e7e87c3
Run tests with webpack4 as well
yoannmoinet Jul 9, 2024
7bc1843
Fix rollupConfig.mjs import
yoannmoinet Jul 10, 2024
5b2192e
Add outputDir to context for webpack and esbuild
yoannmoinet Jul 10, 2024
b8a4b48
Update test
yoannmoinet Jul 10, 2024
5fc71c0
Fix outputFiles global context as it was not filled in time for webpack
yoannmoinet Jul 10, 2024
8fe118c
Make jest silent
yoannmoinet Jul 10, 2024
22db40c
Run all bundlers
yoannmoinet Jul 10, 2024
35aa4a6
Use context instead of basePath for sourcemaps
yoannmoinet Jul 10, 2024
54ab14b
Clean builds before running bundlers
yoannmoinet Jul 10, 2024
b61d5b5
Update tests
yoannmoinet Jul 10, 2024
48bf921
Fix lock
yoannmoinet Jul 10, 2024
92f7158
Remove comment
yoannmoinet Jul 10, 2024
b99b3c9
Update scripts for loops
yoannmoinet Jul 10, 2024
f86c49e
Change error log
yoannmoinet Jul 10, 2024
0a37000
Update test with context to actually reflect context's mutable object
yoannmoinet Jul 10, 2024
69bcdc5
Add test:noisy
yoannmoinet Jul 10, 2024
08b9010
Webpack 4 is hanging, delay the resolution
yoannmoinet Jul 10, 2024
8865781
Remove .only
yoannmoinet Jul 10, 2024
5952bad
Merge pull request #85 from DataDog/yoann/refactor-testing-telemetry
yoannmoinet Jul 10, 2024
b2ca98d
Merge pull request #84 from DataDog/yoann/more-global-contexts
yoannmoinet Jul 10, 2024
a92830f
Update output
yoannmoinet Jul 10, 2024
d6aaea2
Merge pull request #87 from DataDog/yoann/use-context-for-sourcemaps
yoannmoinet Jul 10, 2024
872ab89
Update unplugin to latest
yoannmoinet Jul 10, 2024
500f410
v2.1.0
yoannmoinet Jul 10, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 2 additions & 12 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -373,23 +373,13 @@ module.exports = {
},
},
{
files: [
'rollup.config.mjs',
'packages/core/**/*',
'packages/webpack-plugin/**/*',
'packages/esbuild-plugin/**/*',
],
files: ['rollup.config.mjs', 'packages/core/**/*', 'packages/*-plugin/**/*'],
rules: {
'import/no-extraneous-dependencies': 'off',
},
},
{
files: [
'packages/core/**/*',
'packages/esbuild-plugin/**/*',
'packages/plugins/**/*',
'packages/webpack-plugin/**/*',
],
files: ['packages/core/**/*', 'packages/plugins/**/*', 'packages/*-plugin/**/*'],
rules: {
'no-console': 'error',
},
Expand Down
4 changes: 4 additions & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,7 @@
# Telemetry
packages/plugins/telemetry @DataDog/frontend-devx @yoannmoinet
packages/tests/src/plugins/telemetry @DataDog/frontend-devx @yoannmoinet

# Rum
packages/plugins/rum @DataDog/rum @yoannmoinet
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should probably fix these.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do you think we have a good team to add for RUM?
This one seemed a bit too wide maybe.

packages/tests/src/plugins/rum @DataDog/rum @yoannmoinet
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
yarn-error.log
.yarn/*
!.yarn/cache
!.yarn/patches
!.yarn/releases
!.yarn/plugins
!.vscode

webpack-profile-debug
esbuild-profile-debug
node_modules/
dist/
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
52 changes: 52 additions & 0 deletions .yarn/patches/unplugin-npm-1.10.1-b23391b255.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
diff --git a/dist/index.js b/dist/index.js
index e20e787eb708d88135de6fbff72b0460ac7ae13b..b2a20f4adb99fb1b055d9fd661cf56e2e549926c 100644
--- a/dist/index.js
+++ b/dist/index.js
@@ -1655,8 +1655,8 @@ function getRspackPlugin(factory) {
});
}
if (plugin.writeBundle) {
- compiler.hooks.afterEmit.tap(plugin.name, () => {
- plugin.writeBundle();
+ compiler.hooks.afterEmit.tapPromise(plugin.name, async () => {
+ await plugin.writeBundle();
});
}
}
@@ -1910,8 +1910,8 @@ function getWebpackPlugin(factory) {
});
}
if (plugin.writeBundle) {
- compiler.hooks.afterEmit.tap(plugin.name, () => {
- plugin.writeBundle();
+ compiler.hooks.afterEmit.tapPromise(plugin.name, async () => {
+ await plugin.writeBundle();
});
}
}
diff --git a/dist/index.mjs b/dist/index.mjs
index 7d9b930daf919a180caf2e33a6ed684d53dbc1c5..f4015052d77ae18ae5357fa670ef85e4c3c0007f 100644
--- a/dist/index.mjs
+++ b/dist/index.mjs
@@ -1619,8 +1619,8 @@ function getRspackPlugin(factory) {
});
}
if (plugin.writeBundle) {
- compiler.hooks.afterEmit.tap(plugin.name, () => {
- plugin.writeBundle();
+ compiler.hooks.afterEmit.tapPromise(plugin.name, async () => {
+ await plugin.writeBundle();
});
}
}
@@ -1874,8 +1874,8 @@ function getWebpackPlugin(factory) {
});
}
if (plugin.writeBundle) {
- compiler.hooks.afterEmit.tap(plugin.name, () => {
- plugin.writeBundle();
+ compiler.hooks.afterEmit.tapPromise(plugin.name, async () => {
+ await plugin.writeBundle();
});
}
}
36 changes: 17 additions & 19 deletions LICENSES-3rdparty.csv
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,7 @@ Component,Origin,Licence,Copyright
@tsconfig/node12,npm,MIT,(https://www.npmjs.com/package/@tsconfig/node12)
@tsconfig/node14,npm,MIT,(https://www.npmjs.com/package/@tsconfig/node14)
@tsconfig/node16,npm,MIT,(https://www.npmjs.com/package/@tsconfig/node16)
@types/async-retry,npm,MIT,(https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/async-retry)
@types/babel__core,npm,MIT,(https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/babel__core)
@types/babel__generator,npm,MIT,(https://www.npmjs.com/package/@types/babel__generator)
@types/babel__preset-env,npm,MIT,(https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/babel__preset-env)
Expand All @@ -184,7 +185,7 @@ Component,Origin,Licence,Copyright
@types/chalk,npm,MIT,(https://www.npmjs.com/package/@types/chalk)
@types/color-name,npm,MIT,(https://www.npmjs.com/package/@types/color-name)
@types/eslint,npm,MIT,(https://www.npmjs.com/package/@types/eslint)
@types/eslint-scope,npm,MIT,(https://www.npmjs.com/package/@types/eslint-scope)
@types/eslint-scope,npm,MIT,(https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/eslint-scope)
@types/estree,npm,MIT,(https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/estree)
@types/fs-extra,npm,MIT,(https://www.npmjs.com/package/@types/fs-extra)
@types/glob,npm,MIT,(https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/glob)
Expand All @@ -200,8 +201,14 @@ Component,Origin,Licence,Copyright
@types/node,npm,MIT,(https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node)
@types/parse-json,npm,MIT,(https://www.npmjs.com/package/@types/parse-json)
@types/resolve,npm,MIT,(https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/resolve)
@types/retry,npm,MIT,(https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/retry)
@types/semver,npm,MIT,(https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/semver)
@types/source-list-map,npm,MIT,(https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/source-list-map)
@types/stack-utils,npm,MIT,(https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/stack-utils)
@types/tapable,npm,MIT,(https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/tapable)
@types/uglify-js,npm,MIT,(https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/uglify-js)
@types/webpack,npm,MIT,(https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/webpack)
@types/webpack-sources,npm,MIT,(https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/webpack-sources)
@types/wrap-ansi,npm,MIT,(https://www.npmjs.com/package/@types/wrap-ansi)
@types/yargs,npm,MIT,(https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/yargs)
@types/yargs-parser,npm,MIT,(https://www.npmjs.com/package/@types/yargs-parser)
Expand Down Expand Up @@ -233,13 +240,11 @@ Component,Origin,Licence,Copyright
@webassemblyjs/wasm-parser,npm,MIT,Sven Sauleau (https://www.npmjs.com/package/@webassemblyjs/wasm-parser)
@webassemblyjs/wast-parser,npm,MIT,Sven Sauleau (https://www.npmjs.com/package/@webassemblyjs/wast-parser)
@webassemblyjs/wast-printer,npm,MIT,Sven Sauleau (https://www.npmjs.com/package/@webassemblyjs/wast-printer)
@webpack-cli/info,virtual,MIT,(https://github.com/webpack/webpack-cli/tree/master/packages/info)
@webpack-cli/serve,virtual,MIT,(https://github.com/webpack/webpack-cli/tree/master/packages/serve)
@xtuc/ieee754,npm,BSD-3-Clause,Feross Aboukhadijeh (http://feross.org)
@xtuc/long,npm,Apache-2.0,Daniel Wirtz (https://www.npmjs.com/package/@xtuc/long)
abbrev,npm,ISC,Isaac Z. Schlueter (https://www.npmjs.com/package/abbrev)
acorn,npm,MIT,(https://github.com/acornjs/acorn)
acorn-import-assertions,virtual,MIT,Sven Sauleau (https://www.npmjs.com/package/acorn-import-assertions)
acorn-import-attributes,virtual,MIT,Sven Sauleau (https://www.npmjs.com/package/acorn-import-attributes)
acorn-jsx,virtual,MIT,(https://github.com/acornjs/acorn-jsx)
acorn-walk,npm,MIT,(https://github.com/acornjs/acorn)
aggregate-error,npm,MIT,Sindre Sorhus (sindresorhus.com)
Expand All @@ -259,7 +264,6 @@ argparse,npm,MIT,(https://www.npmjs.com/package/argparse)
arr-diff,npm,MIT,Jon Schlinkert (https://github.com/jonschlinkert/arr-diff)
arr-flatten,npm,MIT,Jon Schlinkert (https://github.com/jonschlinkert/arr-flatten)
arr-union,npm,MIT,Jon Schlinkert (https://github.com/jonschlinkert/arr-union)
array-back,npm,MIT,Lloyd Brookes (https://www.npmjs.com/package/array-back)
array-buffer-byte-length,npm,MIT,Jordan Harband (https://github.com/inspect-js/array-buffer-byte-length#readme)
array-includes,npm,MIT,Jordan Harband (http://ljharb.codes)
array-union,npm,MIT,Sindre Sorhus (sindresorhus.com)
Expand All @@ -275,6 +279,7 @@ assert-plus,npm,MIT,Mark Cavage (https://www.npmjs.com/package/assert-plus)
assign-symbols,npm,MIT,Jon Schlinkert (https://github.com/jonschlinkert/assign-symbols)
astral-regex,npm,MIT,Kevin Mårtensson (github.com/kevva)
async-each,npm,MIT,Paul Miller (https://github.com/paulmillr/async-each/)
async-retry,npm,MIT,(https://www.npmjs.com/package/async-retry)
asynckit,npm,MIT,Alex Indigo (https://github.com/alexindigo/asynckit#readme)
atob,npm,(MIT OR Apache-2.0),AJ ONeal (https://git.coolaj86.com/coolaj86/atob.js.git)
available-typed-arrays,npm,MIT,Jordan Harband (https://github.com/inspect-js/available-typed-arrays#readme)
Expand Down Expand Up @@ -344,9 +349,7 @@ collect-v8-coverage,npm,MIT,(https://www.npmjs.com/package/collect-v8-coverage)
collection-visit,npm,MIT,Jon Schlinkert (https://github.com/jonschlinkert/collection-visit)
color-convert,npm,MIT,Heather Arthur (https://www.npmjs.com/package/color-convert)
color-name,npm,MIT,DY (https://github.com/dfcreative/color-name)
colorette,npm,MIT,Jorge Bucaran (https://www.npmjs.com/package/colorette)
combined-stream,npm,MIT,Felix Geisendörfer (https://github.com/felixge/node-combined-stream)
command-line-usage,npm,MIT,Lloyd Brookes (https://www.npmjs.com/package/command-line-usage)
commander,npm,MIT,TJ Holowaychuk (https://www.npmjs.com/package/commander)
commondir,npm,MIT,James Halliday (http://substack.net)
compare-versions,npm,MIT,Ole Michelsen (https://github.com/omichelsen/compare-versions#readme)
Expand Down Expand Up @@ -377,7 +380,6 @@ data-view-byte-offset,npm,MIT,Jordan Harband (https://github.com/ljharb/data-vie
debug,virtual,MIT,Josh Junon (https://www.npmjs.com/package/debug)
decode-uri-component,npm,MIT,Sam Verschueren (github.com/SamVerschueren)
dedent,virtual,MIT,Desmond Brand (https://github.com/dmnd/dedent)
deep-extend,npm,MIT,Viacheslav Lotsmanov (https://github.com/unclechu/node-deep-extend)
deep-is,npm,MIT,Thorsten Lorenz (http://thlorenz.com)
deepmerge,npm,MIT,(https://github.com/TehShrike/deepmerge)
defaults,npm,MIT,Elijah Insua (https://www.npmjs.com/package/defaults)
Expand Down Expand Up @@ -406,7 +408,6 @@ end-of-stream,npm,MIT,Mathias Buus (https://github.com/mafintosh/end-of-stream)
enhanced-resolve,npm,MIT,Tobias Koppers @sokra (http://github.com/webpack/enhanced-resolve)
enquirer,npm,MIT,Jon Schlinkert (https://github.com/enquirer/enquirer)
env-paths,npm,MIT,Sindre Sorhus (sindresorhus.com)
envinfo,npm,MIT,tabrindle@gmail.com (https://www.npmjs.com/package/envinfo)
errno,npm,MIT,(https://www.npmjs.com/package/errno)
error-ex,npm,MIT,(https://www.npmjs.com/package/error-ex)
es-abstract,npm,MIT,Jordan Harband (http://ljharb.codes)
Expand Down Expand Up @@ -437,6 +438,7 @@ esrecurse,npm,BSD-2-Clause,(https://github.com/estools/esrecurse)
estraverse,npm,BSD-2-Clause,(https://github.com/estools/estraverse)
estree-walker,npm,MIT,Rich Harris (https://www.npmjs.com/package/estree-walker)
esutils,npm,BSD-2-Clause,(https://github.com/estools/esutils)
eventemitter3,npm,MIT,Arnout Kazemier (https://www.npmjs.com/package/eventemitter3)
events,npm,MIT,Irakli Gozalishvili (http://jeditoolkit.com)
evp_bytestokey,npm,MIT,Calvin Metcalf (https://github.com/crypto-browserify/EVP_BytesToKey)
execa,npm,MIT,Sindre Sorhus (sindresorhus.com)
Expand Down Expand Up @@ -530,7 +532,6 @@ infer-owner,npm,ISC,Isaac Z. Schlueter (https://izs.me)
inflight,npm,ISC,Isaac Z. Schlueter (https://github.com/isaacs/inflight)
inherits,npm,ISC,(https://www.npmjs.com/package/inherits)
internal-slot,npm,MIT,Jordan Harband (https://github.com/ljharb/internal-slot#readme)
interpret,npm,MIT,Gulp Team (http://gulpjs.com/)
is-accessor-descriptor,npm,MIT,Jon Schlinkert (https://github.com/jonschlinkert/is-accessor-descriptor)
is-array-buffer,npm,MIT,Jordan Harband (https://github.com/inspect-js/is-array-buffer#readme)
is-arrayish,npm,MIT,Qix (http://github.com/qix-)
Expand Down Expand Up @@ -629,7 +630,6 @@ listr2,npm,MIT,Cenk Kilic (https://srcs.kilic.dev)
loader-runner,npm,MIT,Tobias Koppers @sokra (https://github.com/webpack/loader-runner#readme)
loader-utils,npm,MIT,Tobias Koppers @sokra (https://www.npmjs.com/package/loader-utils)
locate-path,npm,MIT,Sindre Sorhus (sindresorhus.com)
lodash,npm,MIT,John-David Dalton (https://lodash.com/)
lodash.debounce,npm,MIT,John-David Dalton (https://lodash.com/)
lodash.memoize,npm,MIT,John-David Dalton (https://lodash.com/)
lodash.merge,npm,MIT,John-David Dalton (https://lodash.com/)
Expand Down Expand Up @@ -668,6 +668,7 @@ nan,npm,MIT,(https://www.npmjs.com/package/nan)
nanomatch,npm,MIT,Jon Schlinkert (https://github.com/micromatch/nanomatch)
natural-compare,npm,MIT,Lauri Rooden (https://github.com/litejs/natural-compare-lite)
neo-async,npm,MIT,(https://github.com/suguru03/neo-async)
nock,npm,MIT,Pedro Teixeira (https://www.npmjs.com/package/nock)
node-gyp,npm,MIT,Nathan Rajlich (http://tootallnate.net)
node-int64,npm,MIT,Robert Kieffer (https://www.npmjs.com/package/node-int64)
node-libs-browser,npm,MIT,Tobias Koppers @sokra (http://github.com/webpack/node-libs-browser)
Expand Down Expand Up @@ -697,9 +698,12 @@ os-homedir,npm,MIT,Sindre Sorhus (sindresorhus.com)
os-tmpdir,npm,MIT,Sindre Sorhus (sindresorhus.com)
osenv,npm,ISC,Isaac Z. Schlueter (http://blog.izs.me/)
outdent,npm,MIT,Andrew Bradley (https://github.com/cspotcode/outdent#readme)
p-finally,npm,MIT,Sindre Sorhus (sindresorhus.com)
p-limit,npm,MIT,Sindre Sorhus (sindresorhus.com)
p-locate,npm,MIT,Sindre Sorhus (sindresorhus.com)
p-map,npm,MIT,Sindre Sorhus (https://sindresorhus.com)
p-queue,npm,MIT,(https://www.npmjs.com/package/p-queue)
p-timeout,npm,MIT,Sindre Sorhus (sindresorhus.com)
p-try,npm,MIT,Sindre Sorhus (sindresorhus.com)
pad,npm,BSD-3-Clause,David Worms (https://github.com/adaltas/node-pad)
pako,npm,(MIT AND Zlib),(https://github.com/nodeca/pako)
Expand Down Expand Up @@ -734,6 +738,7 @@ process,npm,MIT,Roman Shtylman (https://www.npmjs.com/package/process)
process-nextick-args,npm,MIT,(https://github.com/calvinmetcalf/process-nextick-args)
promise-inflight,virtual,ISC,Rebecca Turner (https://github.com/iarna/promise-inflight#readme)
prompts,npm,MIT,Terkel Gjervig (https://terkel.com)
propagate,npm,MIT,Pedro Teixeira (http://github.com/nock/propagate#readme)
prr,npm,MIT,Rod Vagg (https://github.com/rvagg/prr)
psl,npm,MIT,Lupo Montero (https://lupomontero.com/)
public-encrypt,npm,MIT,Calvin Metcalf (https://github.com/crypto-browserify/publicEncrypt)
Expand All @@ -749,8 +754,6 @@ randomfill,npm,MIT,(https://github.com/crypto-browserify/randomfill)
react-is,npm,MIT,(https://reactjs.org/)
readable-stream,npm,MIT,(https://www.npmjs.com/package/readable-stream)
readdirp,npm,MIT,Thorsten Lorenz (https://github.com/paulmillr/readdirp)
rechoir,npm,MIT,Gulp Team (http://gulpjs.com/)
reduce-flatten,npm,MIT,Lloyd Brookes (https://www.npmjs.com/package/reduce-flatten)
regenerate,npm,MIT,Mathias Bynens (https://mths.be/regenerate)
regenerate-unicode-properties,npm,MIT,Mathias Bynens (https://github.com/mathiasbynens/regenerate-unicode-properties)
regenerator-runtime,npm,MIT,Ben Newman (https://www.npmjs.com/package/regenerator-runtime)
Expand All @@ -771,6 +774,7 @@ resolve-url,npm,MIT,Simon Lydell (https://www.npmjs.com/package/resolve-url)
resolve.exports,npm,MIT,Luke Edwards (https://lukeed.com)
restore-cursor,npm,MIT,Sindre Sorhus (sindresorhus.com)
ret,npm,MIT,Roly Fentanes (https://github.com/fent)
retry,npm,MIT,Tim Koschützki (https://github.com/tim-kos/node-retry)
reusify,npm,MIT,Matteo Collina (https://github.com/mcollina/reusify#readme)
rimraf,npm,ISC,Isaac Z. Schlueter (http://blog.izs.me/)
ripemd160,npm,MIT,(https://www.npmjs.com/package/ripemd160)
Expand Down Expand Up @@ -838,7 +842,6 @@ strip-json-comments,npm,MIT,Sindre Sorhus (https://sindresorhus.com)
supports-color,npm,MIT,Sindre Sorhus (sindresorhus.com)
supports-preserve-symlinks-flag,npm,MIT,Jordan Harband (https://github.com/inspect-js/node-supports-preserve-symlinks-flag#readme)
synckit,npm,MIT,JounQin (https://www.1stG.me)
table-layout,npm,MIT,Lloyd Brookes (https://www.npmjs.com/package/table-layout)
tapable,npm,MIT,Tobias Koppers @sokra (https://github.com/webpack/tapable)
tar,npm,ISC,Isaac Z. Schlueter (http://blog.izs.me/)
terser,npm,BSD-2-Clause,Mihai Bazon (https://terser.org)
Expand Down Expand Up @@ -874,7 +877,6 @@ typed-array-byte-length,npm,MIT,Jordan Harband (https://github.com/inspect-js/ty
typed-array-byte-offset,npm,MIT,Jordan Harband (https://github.com/inspect-js/typed-array-byte-offset#readme)
typed-array-length,npm,MIT,Jordan Harband (https://github.com/inspect-js/typed-array-length#readme)
typedarray,npm,MIT,James Halliday (https://github.com/substack/typedarray)
typical,npm,MIT,Lloyd Brookes (https://www.npmjs.com/package/typical)
unbox-primitive,npm,MIT,Jordan Harband (https://github.com/ljharb/unbox-primitive#readme)
undici-types,npm,MIT,(https://undici.nodejs.org)
unicode-canonical-property-names-ecmascript,npm,MIT,Mathias Bynens (https://github.com/mathiasbynens/unicode-canonical-property-names-ecmascript)
Expand All @@ -896,7 +898,6 @@ use,npm,MIT,Jon Schlinkert (https://github.com/jonschlinkert/use)
util,npm,MIT,Joyent (https://github.com/defunctzombie/node-util)
util-deprecate,npm,MIT,Nathan Rajlich (https://github.com/TooTallNate/util-deprecate)
uuid,npm,MIT,(https://www.npmjs.com/package/uuid)
v8-compile-cache,npm,MIT,Andres Suarez (https://www.npmjs.com/package/v8-compile-cache)
v8-compile-cache-lib,npm,MIT,Andrew Bradley (https://www.npmjs.com/package/v8-compile-cache-lib)
v8-to-istanbul,npm,ISC,Ben Coe (https://www.npmjs.com/package/v8-to-istanbul)
verror,npm,MIT,(https://www.npmjs.com/package/verror)
Expand All @@ -906,16 +907,13 @@ watchpack,npm,MIT,Tobias Koppers @sokra (https://github.com/webpack/watchpack)
watchpack-chokidar2,npm,MIT,Tobias Koppers @sokra (https://github.com/webpack/watchpack)
wcwidth,npm,MIT,Tim Oxley (https://github.com/timoxley/wcwidth#readme)
webpack,virtual,MIT,Tobias Koppers @sokra (https://github.com/webpack/webpack)
webpack-cli,virtual,MIT,(https://www.npmjs.com/package/webpack-cli)
webpack-merge,npm,MIT,Juho Vepsalainen (https://github.com/survivejs/webpack-merge)
webpack-sources,npm,MIT,Tobias Koppers @sokra (https://github.com/webpack/webpack-sources#readme)
webpack-virtual-modules,npm,MIT,SysGears INC (https://github.com/sysgears/webpack-virtual-modules#readme)
which,npm,ISC,Isaac Z. Schlueter (http://blog.izs.me)
which-boxed-primitive,npm,MIT,Jordan Harband (https://github.com/inspect-js/which-boxed-primitive#readme)
which-pm-runs,npm,MIT,Zoltan Kochan (https://github.com/zkochan/which-pm-runs#readme)
which-typed-array,npm,MIT,Jordan Harband (http://ljharb.codes)
wide-align,npm,ISC,Rebecca Turner (http://re-becca.org/)
wordwrapjs,npm,MIT,Lloyd Brookes (https://www.npmjs.com/package/wordwrapjs)
worker-farm,npm,MIT,(https://github.com/rvagg/node-worker-farm)
wrap-ansi,npm,MIT,Sindre Sorhus (sindresorhus.com)
wrappy,npm,ISC,Isaac Z. Schlueter (https://github.com/npm/wrappy)
Expand Down
Loading
Loading