@atlaspack/cli 2.12.1-dev.3520 → 2.12.1-dev.3566
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/makeDebugCommand.js +0 -1
- package/package.json +14 -14
- package/src/makeDebugCommand.js +1 -1
package/lib/makeDebugCommand.js
CHANGED
|
@@ -89,7 +89,6 @@ function makeDebugCommand() {
|
|
|
89
89
|
});
|
|
90
90
|
console.log('Created atlaspack instance');
|
|
91
91
|
await atlaspack.unstable_buildAssetGraph();
|
|
92
|
-
console.log('Done building asset graph');
|
|
93
92
|
process.exit(0);
|
|
94
93
|
} catch (err) {
|
|
95
94
|
(0, _handleUncaughtException.handleUncaughtException)(err);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaspack/cli",
|
|
3
|
-
"version": "2.12.1-dev.
|
|
3
|
+
"version": "2.12.1-dev.3566+facdfb05f",
|
|
4
4
|
"description": "Blazing fast, zero configuration web application bundler",
|
|
5
5
|
"license": "(MIT OR Apache-2.0)",
|
|
6
6
|
"publishConfig": {
|
|
@@ -23,18 +23,18 @@
|
|
|
23
23
|
"node": ">= 16.0.0"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@atlaspack/config-default": "2.12.1-dev.
|
|
27
|
-
"@atlaspack/core": "2.12.1-dev.
|
|
28
|
-
"@atlaspack/diagnostic": "2.12.1-dev.
|
|
29
|
-
"@atlaspack/events": "2.12.1-dev.
|
|
30
|
-
"@atlaspack/feature-flags": "2.12.1-dev.
|
|
31
|
-
"@atlaspack/fs": "2.12.1-dev.
|
|
32
|
-
"@atlaspack/logger": "2.12.1-dev.
|
|
33
|
-
"@atlaspack/package-manager": "2.12.1-dev.
|
|
34
|
-
"@atlaspack/reporter-cli": "2.12.1-dev.
|
|
35
|
-
"@atlaspack/reporter-dev-server": "2.12.1-dev.
|
|
36
|
-
"@atlaspack/reporter-tracer": "2.12.1-dev.
|
|
37
|
-
"@atlaspack/utils": "2.12.1-dev.
|
|
26
|
+
"@atlaspack/config-default": "2.12.1-dev.3566+facdfb05f",
|
|
27
|
+
"@atlaspack/core": "2.12.1-dev.3566+facdfb05f",
|
|
28
|
+
"@atlaspack/diagnostic": "2.12.1-dev.3566+facdfb05f",
|
|
29
|
+
"@atlaspack/events": "2.12.1-dev.3566+facdfb05f",
|
|
30
|
+
"@atlaspack/feature-flags": "2.12.1-dev.3566+facdfb05f",
|
|
31
|
+
"@atlaspack/fs": "2.12.1-dev.3566+facdfb05f",
|
|
32
|
+
"@atlaspack/logger": "2.12.1-dev.3566+facdfb05f",
|
|
33
|
+
"@atlaspack/package-manager": "2.12.1-dev.3566+facdfb05f",
|
|
34
|
+
"@atlaspack/reporter-cli": "2.12.1-dev.3566+facdfb05f",
|
|
35
|
+
"@atlaspack/reporter-dev-server": "2.12.1-dev.3566+facdfb05f",
|
|
36
|
+
"@atlaspack/reporter-tracer": "2.12.1-dev.3566+facdfb05f",
|
|
37
|
+
"@atlaspack/utils": "2.12.1-dev.3566+facdfb05f",
|
|
38
38
|
"chalk": "^4.1.0",
|
|
39
39
|
"commander": "^7.0.0",
|
|
40
40
|
"get-port": "^4.2.0"
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
"@babel/core": "^7.22.11",
|
|
45
45
|
"rimraf": "^5.0.5"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "facdfb05f693e50037a82a4afa101adf093fd8c9"
|
|
48
48
|
}
|
package/src/makeDebugCommand.js
CHANGED
|
@@ -84,10 +84,10 @@ export function makeDebugCommand(): commander$Command {
|
|
|
84
84
|
useLmdbJsLite: true,
|
|
85
85
|
},
|
|
86
86
|
});
|
|
87
|
+
|
|
87
88
|
console.log('Created atlaspack instance');
|
|
88
89
|
|
|
89
90
|
await atlaspack.unstable_buildAssetGraph();
|
|
90
|
-
console.log('Done building asset graph');
|
|
91
91
|
process.exit(0);
|
|
92
92
|
} catch (err) {
|
|
93
93
|
handleUncaughtException(err);
|