@plugjs/expect5 0.6.29 → 0.6.30
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/dist/cli.mjs +1 -1
- package/dist/index.cjs +4 -4
- package/dist/index.cjs.map +1 -1
- package/package.json +3 -3
package/dist/cli.mjs
CHANGED
|
@@ -8,7 +8,7 @@ var { $blu, $und, $gry, $wht } = logging;
|
|
|
8
8
|
var $gnd = (s) => $gry($und(s));
|
|
9
9
|
var $bnd = (s) => $blu($und(s));
|
|
10
10
|
var $wnd = (s) => $wht($und(s));
|
|
11
|
-
var version = true ? "0.6.
|
|
11
|
+
var version = true ? "0.6.30" : "0.0.0-dev";
|
|
12
12
|
function help() {
|
|
13
13
|
console.log(`${$blu($und("Usage:"))}
|
|
14
14
|
|
package/dist/index.cjs
CHANGED
|
@@ -19,8 +19,8 @@ var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "defau
|
|
|
19
19
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
20
20
|
|
|
21
21
|
// index.ts
|
|
22
|
-
var
|
|
23
|
-
__export(
|
|
22
|
+
var index_exports = {};
|
|
23
|
+
__export(index_exports, {
|
|
24
24
|
afterAll: () => import_setup.afterAll,
|
|
25
25
|
afterEach: () => import_setup.afterEach,
|
|
26
26
|
beforeAll: () => import_setup.beforeAll,
|
|
@@ -37,12 +37,12 @@ __export(src_exports, {
|
|
|
37
37
|
xdescribe: () => import_setup.xdescribe,
|
|
38
38
|
xit: () => import_setup.xit
|
|
39
39
|
});
|
|
40
|
-
module.exports = __toCommonJS(
|
|
40
|
+
module.exports = __toCommonJS(index_exports);
|
|
41
41
|
var import_fork = require("@plugjs/plug/fork");
|
|
42
42
|
var import_paths = require("@plugjs/plug/paths");
|
|
43
43
|
var import_executable = require("./execution/executable.cjs");
|
|
44
44
|
var import_setup = require("./execution/setup.cjs");
|
|
45
|
-
__reExport(
|
|
45
|
+
__reExport(index_exports, require("./expectation/expect.cjs"), module.exports);
|
|
46
46
|
(0, import_fork.installForking)("test", (0, import_paths.requireResolve)(__filename, "./test"), "Test");
|
|
47
47
|
// Annotate the CommonJS export names for ESM import in node:
|
|
48
48
|
0 && (module.exports = {
|
package/dist/index.cjs.map
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../src/index.ts"],
|
|
4
|
-
"mappings": ";;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,kBAA+B;AAC/B,mBAA+B;AAQ/B,wBAAqB;AACrB,mBAeO;AACP,
|
|
4
|
+
"mappings": ";;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,kBAA+B;AAC/B,mBAA+B;AAQ/B,wBAAqB;AACrB,mBAeO;AACP,0BAAc,qCA1Bd;AAAA,IAgEA,4BAAe,YAAQ,6BAAe,YAAW,QAAQ,GAAG,MAAM;",
|
|
5
5
|
"names": []
|
|
6
6
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plugjs/expect5",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.30",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.cjs",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -43,14 +43,14 @@
|
|
|
43
43
|
"author": "Juit Developers <developers@juit.com>",
|
|
44
44
|
"license": "Apache-2.0",
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@plugjs/tsrun": "^0.5.
|
|
46
|
+
"@plugjs/tsrun": "^0.5.56"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"@types/chai": "<5",
|
|
50
50
|
"chai": "<5"
|
|
51
51
|
},
|
|
52
52
|
"peerDependencies": {
|
|
53
|
-
"@plugjs/plug": "0.6.
|
|
53
|
+
"@plugjs/plug": "0.6.30"
|
|
54
54
|
},
|
|
55
55
|
"files": [
|
|
56
56
|
"*.md",
|