@atlaspack/cli 2.14.17-dev-compiled-hash-e5f8a1735.0 → 2.14.17
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/CHANGELOG.md +16 -0
- package/dist/makeDebugCommand.js +0 -2
- package/lib/makeDebugCommand.js +0 -2
- package/package.json +15 -16
- package/src/makeDebugCommand.ts +0 -3
- package/tsconfig.tsbuildinfo +1 -1
- package/LICENSE +0 -201
- package/dist/compareCompiledCommand.js +0 -358
- package/lib/compareCompiledCommand.js +0 -378
- package/lib/types/compareCompiledCommand.d.ts +0 -2
- package/src/compareCompiledCommand.ts +0 -462
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @atlaspack/cli
|
|
2
2
|
|
|
3
|
+
## 2.14.17
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`ec3abe4`](https://github.com/atlassian-labs/atlaspack/commit/ec3abe4dffc98560a850fd2f71fb566577e6c99c), [`c7fe3f7`](https://github.com/atlassian-labs/atlaspack/commit/c7fe3f76f247e9e20299e205e2df0a16c418eaf2), [`cfb4707`](https://github.com/atlassian-labs/atlaspack/commit/cfb4707087498e4fa4dcf10753fe984a248d196b), [`33d4c26`](https://github.com/atlassian-labs/atlaspack/commit/33d4c261ceb8d585d56b0a446ed6e28cf7f1126d), [`f31b041`](https://github.com/atlassian-labs/atlaspack/commit/f31b04107e9077c9946aadb99f6f91bb69703bb7), [`8180981`](https://github.com/atlassian-labs/atlaspack/commit/8180981be14c00f9570adb70d3f350bd91d6ec0a), [`119210b`](https://github.com/atlassian-labs/atlaspack/commit/119210b597eb993c50445df87a36b70bd49cd414), [`7d7a55d`](https://github.com/atlassian-labs/atlaspack/commit/7d7a55dd6395ec391a2e4c33b3dec0d1ea477d4c)]:
|
|
8
|
+
- @atlaspack/feature-flags@2.26.2
|
|
9
|
+
- @atlaspack/core@2.27.0
|
|
10
|
+
- @atlaspack/utils@3.1.2
|
|
11
|
+
- @atlaspack/fs@2.15.33
|
|
12
|
+
- @atlaspack/reporter-cli@2.17.20
|
|
13
|
+
- @atlaspack/config-default@8.0.0
|
|
14
|
+
- @atlaspack/logger@2.14.30
|
|
15
|
+
- @atlaspack/package-manager@2.14.38
|
|
16
|
+
- @atlaspack/reporter-dev-server@2.14.38
|
|
17
|
+
- @atlaspack/reporter-tracer@2.14.38
|
|
18
|
+
|
|
3
19
|
## 2.14.16
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/dist/makeDebugCommand.js
CHANGED
|
@@ -13,7 +13,6 @@ const normalizeOptions_1 = require("./normalizeOptions");
|
|
|
13
13
|
const applyOptions_1 = require("./applyOptions");
|
|
14
14
|
const options_1 = require("./options");
|
|
15
15
|
const handleUncaughtException_1 = require("./handleUncaughtException");
|
|
16
|
-
const compareCompiledCommand_1 = require("./compareCompiledCommand");
|
|
17
16
|
function makeDebugCommand() {
|
|
18
17
|
const debug = new commander_1.default.Command('debug').description('Debug commands for atlaspack');
|
|
19
18
|
const getInstance = async (args, opts, command) => {
|
|
@@ -95,6 +94,5 @@ function makeDebugCommand() {
|
|
|
95
94
|
}
|
|
96
95
|
});
|
|
97
96
|
(0, applyOptions_1.applyOptions)(compactCache, options_1.commonOptions);
|
|
98
|
-
debug.addCommand((0, compareCompiledCommand_1.makeCompareCompiledCommand)());
|
|
99
97
|
return debug;
|
|
100
98
|
}
|
package/lib/makeDebugCommand.js
CHANGED
|
@@ -36,7 +36,6 @@ var _normalizeOptions = require("./normalizeOptions");
|
|
|
36
36
|
var _applyOptions = require("./applyOptions");
|
|
37
37
|
var _options = require("./options");
|
|
38
38
|
var _handleUncaughtException = require("./handleUncaughtException");
|
|
39
|
-
var _compareCompiledCommand = require("./compareCompiledCommand");
|
|
40
39
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
41
40
|
// @ts-expect-error TS2305
|
|
42
41
|
|
|
@@ -109,6 +108,5 @@ function makeDebugCommand() {
|
|
|
109
108
|
}
|
|
110
109
|
});
|
|
111
110
|
(0, _applyOptions.applyOptions)(compactCache, _options.commonOptions);
|
|
112
|
-
debug.addCommand((0, _compareCompiledCommand.makeCompareCompiledCommand)());
|
|
113
111
|
return debug;
|
|
114
112
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaspack/cli",
|
|
3
|
-
"version": "2.14.17
|
|
3
|
+
"version": "2.14.17",
|
|
4
4
|
"description": "Blazing fast, zero configuration web application bundler",
|
|
5
5
|
"license": "(MIT OR Apache-2.0)",
|
|
6
6
|
"type": "commonjs",
|
|
@@ -24,26 +24,25 @@
|
|
|
24
24
|
"node": ">= 16.0.0"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@atlaspack/config-default": "
|
|
28
|
-
"@atlaspack/core": "2.
|
|
29
|
-
"@atlaspack/diagnostic": "2.14.
|
|
30
|
-
"@atlaspack/events": "2.14.
|
|
31
|
-
"@atlaspack/feature-flags": "2.26.2
|
|
32
|
-
"@atlaspack/fs": "2.15.33
|
|
33
|
-
"@atlaspack/logger": "2.14.30
|
|
34
|
-
"@atlaspack/package-manager": "2.14.38
|
|
35
|
-
"@atlaspack/reporter-cli": "2.17.20
|
|
36
|
-
"@atlaspack/reporter-dev-server": "2.14.38
|
|
37
|
-
"@atlaspack/reporter-tracer": "2.14.38
|
|
38
|
-
"@atlaspack/utils": "3.1.2
|
|
27
|
+
"@atlaspack/config-default": "8.0.0",
|
|
28
|
+
"@atlaspack/core": "2.27.0",
|
|
29
|
+
"@atlaspack/diagnostic": "2.14.4",
|
|
30
|
+
"@atlaspack/events": "2.14.4",
|
|
31
|
+
"@atlaspack/feature-flags": "2.26.2",
|
|
32
|
+
"@atlaspack/fs": "2.15.33",
|
|
33
|
+
"@atlaspack/logger": "2.14.30",
|
|
34
|
+
"@atlaspack/package-manager": "2.14.38",
|
|
35
|
+
"@atlaspack/reporter-cli": "2.17.20",
|
|
36
|
+
"@atlaspack/reporter-dev-server": "2.14.38",
|
|
37
|
+
"@atlaspack/reporter-tracer": "2.14.38",
|
|
38
|
+
"@atlaspack/utils": "3.1.2",
|
|
39
39
|
"chalk": "^4.1.0",
|
|
40
40
|
"commander": "^7.0.0",
|
|
41
41
|
"get-port": "^4.2.0"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@atlaspack/babel-register": "2.14.5-dev-compiled-hash-e5f8a1735.0",
|
|
45
44
|
"@babel/core": "^7.22.11",
|
|
45
|
+
"@atlaspack/babel-register": "2.14.4",
|
|
46
46
|
"rimraf": "^5.0.5"
|
|
47
|
-
}
|
|
48
|
-
"gitHead": "e5f8a173505611c1fafafd6e7dddb2f6b483f67c"
|
|
47
|
+
}
|
|
49
48
|
}
|
package/src/makeDebugCommand.ts
CHANGED
|
@@ -8,7 +8,6 @@ import type {CommandExt} from './normalizeOptions';
|
|
|
8
8
|
import {applyOptions} from './applyOptions';
|
|
9
9
|
import {commonOptions} from './options';
|
|
10
10
|
import {handleUncaughtException} from './handleUncaughtException';
|
|
11
|
-
import {makeCompareCompiledCommand} from './compareCompiledCommand';
|
|
12
11
|
|
|
13
12
|
export function makeDebugCommand(): commander.Command {
|
|
14
13
|
const debug = new commander.Command('debug').description(
|
|
@@ -105,7 +104,5 @@ export function makeDebugCommand(): commander.Command {
|
|
|
105
104
|
});
|
|
106
105
|
applyOptions(compactCache, commonOptions);
|
|
107
106
|
|
|
108
|
-
debug.addCommand(makeCompareCompiledCommand());
|
|
109
|
-
|
|
110
107
|
return debug;
|
|
111
108
|
}
|