@atlaspack/utils 2.14.5-canary.170 → 2.14.5-canary.171
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/lib/debug-tools.js +2 -1
- package/lib/types/debug-tools.d.ts +1 -0
- package/package.json +9 -9
- package/src/debug-tools.ts +2 -0
package/lib/debug-tools.js
CHANGED
|
@@ -17,7 +17,8 @@ exports.debugTools = void 0;
|
|
|
17
17
|
|
|
18
18
|
let debugTools = exports.debugTools = {
|
|
19
19
|
'asset-file-names-in-output': false,
|
|
20
|
-
'simple-cli-reporter': false
|
|
20
|
+
'simple-cli-reporter': false,
|
|
21
|
+
'bundle-stats': false
|
|
21
22
|
};
|
|
22
23
|
const envVarValue = process.env.ATLASPACK_DEBUG_TOOLS ?? '';
|
|
23
24
|
for (let tool of envVarValue.split(',')) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaspack/utils",
|
|
3
|
-
"version": "2.14.5-canary.
|
|
3
|
+
"version": "2.14.5-canary.171+f0349a6b9",
|
|
4
4
|
"description": "Blazing fast, zero configuration web application bundler",
|
|
5
5
|
"license": "(MIT OR Apache-2.0)",
|
|
6
6
|
"publishConfig": {
|
|
@@ -31,13 +31,13 @@
|
|
|
31
31
|
}
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@atlaspack/codeframe": "2.13.3-canary.
|
|
35
|
-
"@atlaspack/diagnostic": "2.14.1-canary.
|
|
36
|
-
"@atlaspack/feature-flags": "2.14.1-canary.
|
|
37
|
-
"@atlaspack/logger": "2.14.5-canary.
|
|
38
|
-
"@atlaspack/markdown-ansi": "2.14.1-canary.
|
|
39
|
-
"@atlaspack/rust": "3.2.1-canary.
|
|
40
|
-
"@atlaspack/types-internal": "2.14.1-canary.
|
|
34
|
+
"@atlaspack/codeframe": "2.13.3-canary.239+f0349a6b9",
|
|
35
|
+
"@atlaspack/diagnostic": "2.14.1-canary.239+f0349a6b9",
|
|
36
|
+
"@atlaspack/feature-flags": "2.14.1-canary.239+f0349a6b9",
|
|
37
|
+
"@atlaspack/logger": "2.14.5-canary.171+f0349a6b9",
|
|
38
|
+
"@atlaspack/markdown-ansi": "2.14.1-canary.239+f0349a6b9",
|
|
39
|
+
"@atlaspack/rust": "3.2.1-canary.171+f0349a6b9",
|
|
40
|
+
"@atlaspack/types-internal": "2.14.1-canary.239+f0349a6b9",
|
|
41
41
|
"@iarna/toml": "^2.2.0",
|
|
42
42
|
"@parcel/source-map": "^2.1.1",
|
|
43
43
|
"@types/micromatch": "^4.0.9",
|
|
@@ -75,5 +75,5 @@
|
|
|
75
75
|
"check-ts": "tsc --emitDeclarationOnly --rootDir src",
|
|
76
76
|
"build:lib": "gulp build --gulpfile ../../../gulpfile.js --cwd ."
|
|
77
77
|
},
|
|
78
|
-
"gitHead": "
|
|
78
|
+
"gitHead": "f0349a6b9b04755088f121095ca6301a2ada3767"
|
|
79
79
|
}
|
package/src/debug-tools.ts
CHANGED
|
@@ -12,11 +12,13 @@
|
|
|
12
12
|
type DebugTools = {
|
|
13
13
|
['asset-file-names-in-output']: boolean;
|
|
14
14
|
['simple-cli-reporter']: boolean;
|
|
15
|
+
['bundle-stats']: boolean;
|
|
15
16
|
};
|
|
16
17
|
|
|
17
18
|
export let debugTools: DebugTools = {
|
|
18
19
|
'asset-file-names-in-output': false,
|
|
19
20
|
'simple-cli-reporter': false,
|
|
21
|
+
'bundle-stats': false,
|
|
20
22
|
};
|
|
21
23
|
|
|
22
24
|
const envVarValue = process.env.ATLASPACK_DEBUG_TOOLS ?? '';
|