@oclif/plugin-test-esbuild 0.4.16 → 0.4.18
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/README.md +4 -4
- package/dist/{chunk-F5ZYUUO6.js → chunk-BFB7DX4H.js} +1 -1
- package/dist/{chunk-54O6IJ3K.js → chunk-DQOR6OMF.js} +1 -1
- package/dist/{chunk-XYOC7XX7.js → chunk-QTRAB6EQ.js} +1 -1
- package/dist/{chunk-DR722OXP.js → chunk-QWDKXXHB.js} +1 -1
- package/dist/{chunk-3BMX7KMN.js → chunk-XMMEVJHV.js} +262 -484
- package/dist/commands/esbuild.js +2 -2
- package/dist/commands/hello/index.js +2 -2
- package/dist/commands/hello/world.js +2 -2
- package/dist/hooks/init/init.js +2 -2
- package/dist/index.js +16 -18
- package/oclif.manifest.json +1 -1
- package/package.json +5 -5
package/dist/commands/esbuild.js
CHANGED
package/dist/hooks/init/init.js
CHANGED
package/dist/index.js
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
import {
|
|
2
2
|
ESBuild
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-DQOR6OMF.js";
|
|
4
4
|
import {
|
|
5
5
|
Hello
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-QWDKXXHB.js";
|
|
7
7
|
import {
|
|
8
8
|
World
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-BFB7DX4H.js";
|
|
10
10
|
import {
|
|
11
11
|
init_default
|
|
12
|
-
} from "./chunk-
|
|
12
|
+
} from "./chunk-QTRAB6EQ.js";
|
|
13
13
|
import {
|
|
14
14
|
__commonJS,
|
|
15
15
|
__toESM,
|
|
16
16
|
init_cjs_shims,
|
|
17
17
|
require_lib,
|
|
18
18
|
require_src
|
|
19
|
-
} from "./chunk-
|
|
19
|
+
} from "./chunk-XMMEVJHV.js";
|
|
20
20
|
|
|
21
21
|
// node_modules/semver/internal/constants.js
|
|
22
22
|
var require_constants = __commonJS({
|
|
@@ -1359,8 +1359,7 @@ var require_lru_cache = __commonJS({
|
|
|
1359
1359
|
return true;
|
|
1360
1360
|
}
|
|
1361
1361
|
has(key) {
|
|
1362
|
-
if (!this[CACHE].has(key))
|
|
1363
|
-
return false;
|
|
1362
|
+
if (!this[CACHE].has(key)) return false;
|
|
1364
1363
|
const hit = this[CACHE].get(key).value;
|
|
1365
1364
|
return !isStale(this, hit);
|
|
1366
1365
|
}
|
|
@@ -2264,19 +2263,18 @@ var require_subset = __commonJS({
|
|
|
2264
2263
|
sub = new Range(sub, options);
|
|
2265
2264
|
dom = new Range(dom, options);
|
|
2266
2265
|
let sawNonNull = false;
|
|
2267
|
-
OUTER:
|
|
2268
|
-
for (const
|
|
2269
|
-
|
|
2270
|
-
|
|
2271
|
-
|
|
2272
|
-
|
|
2273
|
-
continue OUTER;
|
|
2274
|
-
}
|
|
2275
|
-
}
|
|
2276
|
-
if (sawNonNull) {
|
|
2277
|
-
return false;
|
|
2266
|
+
OUTER: for (const simpleSub of sub.set) {
|
|
2267
|
+
for (const simpleDom of dom.set) {
|
|
2268
|
+
const isSub = simpleSubset(simpleSub, simpleDom, options);
|
|
2269
|
+
sawNonNull = sawNonNull || isSub !== null;
|
|
2270
|
+
if (isSub) {
|
|
2271
|
+
continue OUTER;
|
|
2278
2272
|
}
|
|
2279
2273
|
}
|
|
2274
|
+
if (sawNonNull) {
|
|
2275
|
+
return false;
|
|
2276
|
+
}
|
|
2277
|
+
}
|
|
2280
2278
|
return true;
|
|
2281
2279
|
};
|
|
2282
2280
|
var minimumVersionWithPreRelease = [new Comparator(">=0.0.0-0")];
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oclif/plugin-test-esbuild",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.18",
|
|
4
4
|
"description": "Bundled plugin for testing",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bugs": "https://github.com/oclif/plugin-test-esbuild/issues",
|
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
"bundle": "./bin/run.js"
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@oclif/core": "^3.26.
|
|
15
|
-
"@oclif/plugin-test-esm-1": "^0.7.
|
|
14
|
+
"@oclif/core": "^3.26.6",
|
|
15
|
+
"@oclif/plugin-test-esm-1": "^0.7.15",
|
|
16
16
|
"@oclif/plugin-plugins": "^4.3.10"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
@@ -22,13 +22,13 @@
|
|
|
22
22
|
"@types/mocha": "^10.0.0",
|
|
23
23
|
"@types/node": "^18",
|
|
24
24
|
"chai": "^4",
|
|
25
|
-
"esbuild": "^0.
|
|
25
|
+
"esbuild": "^0.21.1",
|
|
26
26
|
"eslint": "^8.57.0",
|
|
27
27
|
"eslint-config-oclif": "^5",
|
|
28
28
|
"eslint-config-oclif-typescript": "^3",
|
|
29
29
|
"eslint-config-prettier": "^9.1.0",
|
|
30
30
|
"mocha": "^10",
|
|
31
|
-
"oclif": "^4.10.
|
|
31
|
+
"oclif": "^4.10.7",
|
|
32
32
|
"shx": "^0.3.4",
|
|
33
33
|
"ts-node": "^10.9.2",
|
|
34
34
|
"typescript": "^5"
|