@atlaspack/utils 2.14.5-canary.170 → 2.14.5-canary.172

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.
@@ -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(',')) {
@@ -1,6 +1,7 @@
1
1
  type DebugTools = {
2
2
  ['asset-file-names-in-output']: boolean;
3
3
  ['simple-cli-reporter']: boolean;
4
+ ['bundle-stats']: boolean;
4
5
  };
5
6
  export declare let debugTools: DebugTools;
6
7
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaspack/utils",
3
- "version": "2.14.5-canary.170+c940954d2",
3
+ "version": "2.14.5-canary.172+88439807b",
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.238+c940954d2",
35
- "@atlaspack/diagnostic": "2.14.1-canary.238+c940954d2",
36
- "@atlaspack/feature-flags": "2.14.1-canary.238+c940954d2",
37
- "@atlaspack/logger": "2.14.5-canary.170+c940954d2",
38
- "@atlaspack/markdown-ansi": "2.14.1-canary.238+c940954d2",
39
- "@atlaspack/rust": "3.2.1-canary.170+c940954d2",
40
- "@atlaspack/types-internal": "2.14.1-canary.238+c940954d2",
34
+ "@atlaspack/codeframe": "2.13.3-canary.240+88439807b",
35
+ "@atlaspack/diagnostic": "2.14.1-canary.240+88439807b",
36
+ "@atlaspack/feature-flags": "2.14.1-canary.240+88439807b",
37
+ "@atlaspack/logger": "2.14.5-canary.172+88439807b",
38
+ "@atlaspack/markdown-ansi": "2.14.1-canary.240+88439807b",
39
+ "@atlaspack/rust": "3.2.1-canary.172+88439807b",
40
+ "@atlaspack/types-internal": "2.14.1-canary.240+88439807b",
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": "c940954d27d657c3c93cd328dfb394778da46eab"
78
+ "gitHead": "88439807be20025fd3433380204ff1205079729e"
79
79
  }
@@ -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 ?? '';