@datadog/webpack-plugin 3.0.7 → 3.0.8-dev.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/index.d.ts +6 -2
- package/dist/src/index.js +1 -1
- package/dist/src/index.js.map +1 -1
- package/dist/src/index.mjs +2 -2
- package/dist/src/rum-browser-sdk.js +1 -1
- package/package.json +85 -87
package/package.json
CHANGED
|
@@ -1,90 +1,88 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
"types": "./dist/src/index.d.ts",
|
|
24
|
-
"exports": {
|
|
25
|
-
"./package.json": "./package.json",
|
|
26
|
-
".": {
|
|
27
|
-
"import": "./dist/src/index.mjs",
|
|
28
|
-
"require": "./dist/src/index.js",
|
|
29
|
-
"types": "./dist/src/index.d.ts"
|
|
30
|
-
}
|
|
31
|
-
},
|
|
32
|
-
"publishConfig": {
|
|
33
|
-
"access": "public",
|
|
2
|
+
"name": "@datadog/webpack-plugin",
|
|
3
|
+
"packageManager": "yarn@4.0.2",
|
|
4
|
+
"version": "3.0.8-dev.0",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"author": "Datadog",
|
|
7
|
+
"description": "Datadog Webpack Plugin",
|
|
8
|
+
"keywords": [
|
|
9
|
+
"datadog",
|
|
10
|
+
"webpack",
|
|
11
|
+
"bundler",
|
|
12
|
+
"plugin",
|
|
13
|
+
"unplugin"
|
|
14
|
+
],
|
|
15
|
+
"homepage": "https://github.com/DataDog/build-plugins#readme",
|
|
16
|
+
"repository": {
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "https://github.com/DataDog/build-plugins",
|
|
19
|
+
"directory": "packages/published/webpack-plugin"
|
|
20
|
+
},
|
|
21
|
+
"main": "./dist/src/index.js",
|
|
22
|
+
"module": "./dist/src/index.mjs",
|
|
34
23
|
"types": "./dist/src/index.d.ts",
|
|
35
24
|
"exports": {
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
"
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
"
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
"
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
"
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
25
|
+
"./dist/src": "./dist/src/index.js",
|
|
26
|
+
"./dist/src/*": "./dist/src/*",
|
|
27
|
+
".": "./src/index.ts"
|
|
28
|
+
},
|
|
29
|
+
"publishConfig": {
|
|
30
|
+
"access": "public",
|
|
31
|
+
"types": "./dist/src/index.d.ts",
|
|
32
|
+
"exports": {
|
|
33
|
+
"./package.json": "./package.json",
|
|
34
|
+
".": {
|
|
35
|
+
"import": "./dist/src/index.mjs",
|
|
36
|
+
"require": "./dist/src/index.js",
|
|
37
|
+
"types": "./dist/src/index.d.ts"
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
"files": [
|
|
42
|
+
"dist"
|
|
43
|
+
],
|
|
44
|
+
"scripts": {
|
|
45
|
+
"buildCmd": "rollup --config rollup.config.mjs",
|
|
46
|
+
"build": "yarn clean && yarn buildCmd",
|
|
47
|
+
"clean": "rm -rf dist",
|
|
48
|
+
"prepack": "yarn build",
|
|
49
|
+
"typecheck": "tsc --noEmit",
|
|
50
|
+
"watch": "yarn build --watch"
|
|
51
|
+
},
|
|
52
|
+
"dependencies": {
|
|
53
|
+
"@datadog/js-instrumentation-wasm": "1.0.8",
|
|
54
|
+
"async-retry": "1.3.3",
|
|
55
|
+
"chalk": "2.3.1",
|
|
56
|
+
"glob": "11.0.0",
|
|
57
|
+
"json-stream-stringify": "3.1.6",
|
|
58
|
+
"outdent": "0.8.0",
|
|
59
|
+
"p-queue": "6.6.2",
|
|
60
|
+
"pretty-bytes": "5.6.0",
|
|
61
|
+
"simple-git": "3.25.0",
|
|
62
|
+
"unplugin": "2.3.11"
|
|
63
|
+
},
|
|
64
|
+
"devDependencies": {
|
|
65
|
+
"@babel/core": "7.24.5",
|
|
66
|
+
"@babel/preset-env": "7.24.5",
|
|
67
|
+
"@babel/preset-typescript": "7.24.1",
|
|
68
|
+
"@dd/factory": "workspace:*",
|
|
69
|
+
"@dd/tools": "workspace:*",
|
|
70
|
+
"@rollup/plugin-babel": "6.0.4",
|
|
71
|
+
"@rollup/plugin-commonjs": "28.0.1",
|
|
72
|
+
"@rollup/plugin-esm-shim": "0.1.7",
|
|
73
|
+
"@rollup/plugin-json": "6.1.0",
|
|
74
|
+
"@rollup/plugin-node-resolve": "15.3.0",
|
|
75
|
+
"@rollup/plugin-terser": "0.4.4",
|
|
76
|
+
"@types/babel__core": "^7",
|
|
77
|
+
"@types/babel__preset-env": "^7",
|
|
78
|
+
"esbuild": "0.25.8",
|
|
79
|
+
"rollup": "4.45.1",
|
|
80
|
+
"rollup-plugin-dts": "6.1.1",
|
|
81
|
+
"rollup-plugin-esbuild": "6.1.1",
|
|
82
|
+
"typescript": "5.4.3"
|
|
83
|
+
},
|
|
84
|
+
"peerDependencies": {
|
|
85
|
+
"webpack": ">= 5.x < 6.x"
|
|
86
|
+
},
|
|
87
|
+
"stableVersion": "3.0.8"
|
|
88
|
+
}
|