testeranto 0.135.0 → 0.140.0
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/.aider.chat.history.md +13976 -0
- package/.aider.input.history +530 -0
- package/.aider.tags.cache.v3/{d8/b0/a8966fcd65890fd9f70d7afe8141.val → bd/91/b71f967fd074cf4b757081b429b7.val} +0 -0
- package/.aider.tags.cache.v3/cache.db +0 -0
- package/.aider.tags.cache.v3/{8e/ec/2d4659a1589a0187a757ab1cbefa.val → fb/96/b0f91c7e75e08fc5a6907633cf99.val} +0 -0
- package/README.md +28 -135
- package/bundle.js +1 -1
- package/dist/common/src/Init.js +4 -1
- package/dist/common/src/Node.js +1 -1
- package/dist/common/src/PM/__tests__/nodeSidecar.testeranto.js +2 -2
- package/dist/common/src/Web.js +2 -2
- package/dist/common/src/build.js +7 -73
- package/dist/common/src/defaultConfig.js +0 -1
- package/dist/common/src/lib/abstractBase.js +2 -0
- package/dist/common/src/lib/basebuilder.js +4 -0
- package/dist/common/src/lib/core.js +2 -0
- package/dist/common/src/run.js +1 -1
- package/dist/common/src/utils/buildTemplates.js +88 -0
- package/dist/common/tsconfig.common.tsbuildinfo +1 -1
- package/dist/module/src/Init.js +4 -1
- package/dist/module/src/Node.js +1 -1
- package/dist/module/src/PM/__tests__/nodeSidecar.testeranto.js +2 -2
- package/dist/module/src/Project.js +41 -47
- package/dist/module/src/TestReport.js +34 -31
- package/dist/module/src/Web.js +2 -2
- package/dist/module/src/build.js +7 -73
- package/dist/module/src/defaultConfig.js +0 -1
- package/dist/module/src/lib/abstractBase.js +2 -0
- package/dist/module/src/lib/basebuilder.js +4 -0
- package/dist/module/src/lib/core.js +2 -0
- package/dist/module/src/run.js +1 -1
- package/dist/module/src/utils/buildTemplates.js +82 -0
- package/dist/module/tsconfig.module.tsbuildinfo +1 -1
- package/dist/prebuild/Project.js +62 -13
- package/dist/prebuild/TestReport.js +39 -18
- package/dist/prebuild/build.mjs +96 -73
- package/dist/prebuild/init-docs.mjs +0 -4
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/dist/types/src/CoreTypes.d.ts +5 -3
- package/dist/types/src/Node.d.ts +3 -3
- package/dist/types/src/PM/__tests__/nodeSidecar.testeranto.d.ts +17 -1
- package/dist/types/src/PM/__tests__/pureSidecar.testeranto.d.ts +17 -1
- package/dist/types/src/PM/__tests__/webSidecar.testeranto.d.ts +17 -1
- package/dist/types/src/PM/nodeSidecar.d.ts +2 -2
- package/dist/types/src/Pure.d.ts +3 -3
- package/dist/types/src/Types.d.ts +18 -14
- package/dist/types/src/Web.d.ts +3 -3
- package/dist/types/src/lib/abstractBase.d.ts +8 -8
- package/dist/types/src/lib/basebuilder.d.ts +3 -3
- package/dist/types/src/lib/classBuilder.d.ts +2 -2
- package/dist/types/src/lib/core.d.ts +2 -2
- package/dist/types/src/lib/index.d.ts +7 -6
- package/dist/types/src/lib/types.d.ts +8 -8
- package/dist/types/src/mothership/test.d.ts +20 -1
- package/dist/types/src/utils/buildTemplates.d.ts +3 -0
- package/dist/types/tsconfig.types.tsbuildinfo +1 -1
- package/docs/index.md +344 -54
- package/docs/style.md +116 -0
- package/docs.html +537 -0
- package/example.css +351 -0
- package/fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Black.ttf +0 -0
- package/fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Bold.ttf +0 -0
- package/fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-ExtraBold.ttf +0 -0
- package/fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Light.ttf +0 -0
- package/fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Medium.ttf +0 -0
- package/fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Regular.ttf +0 -0
- package/fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Thin.ttf +0 -0
- package/fonts/M_PLUS_Rounded_1c/OFL.txt +91 -0
- package/index.html +245 -24
- package/logo.svg +72 -0
- package/package.json +6 -2
- package/scripts/compile-docs.js +89 -0
- package/src/CoreTypes.ts +24 -43
- package/src/Init.ts +4 -4
- package/src/Node.ts +6 -20
- package/src/PM/__tests__/nodeSidecar.testeranto.ts +13 -20
- package/src/PM/__tests__/pureSidecar.testeranto.ts +8 -15
- package/src/PM/__tests__/webSidecar.testeranto.ts +8 -15
- package/src/PM/nodeSidecar.ts +2 -2
- package/src/PM/pure.ts +0 -4
- package/src/Project.tsx +289 -292
- package/src/Pure.ts +13 -14
- package/src/PureSidecar.ts +1 -0
- package/src/TestReport.tsx +179 -165
- package/src/Types.ts +29 -144
- package/src/Web.ts +15 -11
- package/src/build.ts +22 -73
- package/src/defaultConfig.ts +2 -1
- package/src/lib/BaseSuite.test.ts +457 -0
- package/src/lib/BaseSuite.ts +155 -0
- package/src/lib/abstractBase.ts +7 -162
- package/src/lib/basebuilder.ts +11 -11
- package/src/lib/classBuilder.ts +8 -3
- package/src/lib/core.ts +12 -12
- package/src/lib/index.ts +21 -24
- package/src/lib/types.ts +23 -9
- package/src/mothership/test.ts +13 -10
- package/src/run.ts +1 -1
- package/src/style.css +1 -1
- package/src/utils/buildTemplates.ts +88 -0
- package/style.css +496 -0
- package/testeranto/bundles/node/{mothership/chunk-V2EQEXU2.mjs → allTests/chunk-4PJCC2XT.mjs} +66 -59
- package/testeranto/bundles/node/allTests/metafile.json +4151 -0
- package/testeranto/bundles/node/allTests/src/PM/__tests__/nodeSidecar.testeranto.mjs +187 -0
- package/testeranto/bundles/node/{mothership → allTests}/src/PM/__tests__/pureSidecar.testeranto.mjs +1 -1
- package/testeranto/bundles/node/{mothership → allTests}/src/PM/__tests__/webSidecar.testeranto.mjs +1 -1
- package/testeranto/bundles/node/allTests/src/lib/BaseSuite.test.mjs +305 -0
- package/testeranto/bundles/node/{mothership → allTests}/src/mothership/test.mjs +1 -1
- package/testeranto/dev.html +29 -0
- package/testeranto/index.html +28 -27
- package/testeranto/reports/allTests/config.json +57 -0
- package/testeranto/reports/{mothership/index.html → allTests/dev.html} +2 -0
- package/testeranto/reports/allTests/index.html +26 -0
- package/testeranto/reports/{mothership/src/PM/__tests__/sidecar.testeranto/node/index.html → allTests/src/PM/__tests__/nodeSidecar.testeranto/node/dev.html} +4 -3
- package/testeranto/reports/allTests/src/PM/__tests__/nodeSidecar.testeranto/node/index.html +21 -0
- package/testeranto/reports/allTests/src/PM/__tests__/nodeSidecar.testeranto/node/lint_errors.json +80 -0
- package/testeranto/reports/allTests/src/PM/__tests__/nodeSidecar.testeranto/node/message +1 -0
- package/testeranto/reports/allTests/src/PM/__tests__/nodeSidecar.testeranto/node/prompt.txt +8 -0
- package/testeranto/reports/allTests/src/PM/__tests__/nodeSidecar.testeranto/node/type_errors.txt +28 -0
- package/testeranto/reports/{mothership/src/PM/__tests__/webSidecar.testeranto/node/index.html → allTests/src/PM/__tests__/pureSidecar.testeranto/node/dev.html} +4 -3
- package/testeranto/reports/allTests/src/PM/__tests__/pureSidecar.testeranto/node/index.html +21 -0
- package/testeranto/reports/{mothership → allTests}/src/PM/__tests__/pureSidecar.testeranto/node/lint_errors.json +12 -12
- package/testeranto/reports/allTests/src/PM/__tests__/pureSidecar.testeranto/node/message +1 -0
- package/testeranto/reports/allTests/src/PM/__tests__/pureSidecar.testeranto/node/prompt.txt +8 -0
- package/testeranto/reports/allTests/src/PM/__tests__/pureSidecar.testeranto/node/type_errors.txt +32 -0
- package/testeranto/reports/{mothership/src/PM/__tests__/nodeSidecar.testeranto/node/index.html → allTests/src/PM/__tests__/webSidecar.testeranto/node/dev.html} +4 -3
- package/testeranto/reports/allTests/src/PM/__tests__/webSidecar.testeranto/node/index.html +21 -0
- package/testeranto/reports/{mothership → allTests}/src/PM/__tests__/webSidecar.testeranto/node/lint_errors.json +12 -12
- package/testeranto/reports/allTests/src/PM/__tests__/webSidecar.testeranto/node/message +1 -0
- package/testeranto/reports/allTests/src/PM/__tests__/webSidecar.testeranto/node/prompt.txt +8 -0
- package/testeranto/reports/allTests/src/PM/__tests__/webSidecar.testeranto/node/type_errors.txt +32 -0
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/node/console_log.txt +35 -0
- package/testeranto/reports/{mothership/src/PM/__tests__/pureSidecar.testeranto/node/index.html → allTests/src/lib/BaseSuite.test/node/dev.html} +4 -3
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/node/index.html +21 -0
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/node/lint_errors.json +608 -0
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/node/message +1 -0
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/node/prompt.txt +7 -0
- package/testeranto/reports/allTests/src/lib/BaseSuite.test/node/type_errors.txt +68 -0
- package/testeranto/reports/allTests/src/mothership/test/node/dev.html +21 -0
- package/testeranto/reports/allTests/src/mothership/test/node/index.html +21 -0
- package/testeranto/reports/allTests/src/mothership/test/node/message +1 -0
- package/testeranto/reports/allTests/src/mothership/test/node/prompt.txt +8 -0
- package/testeranto/reports/allTests/src/mothership/test/node/type_errors.txt +24 -0
- package/testeranto/reports/allTests/summary.json +37 -0
- package/testeranto.config.ts +16 -26
- package/tsc.log +66 -69
- package/dist/common/src/SP__Polygon.test.js +0 -10
- package/dist/module/src/ReportClient.js +0 -132
- package/dist/module/src/SP__Polygon.test.js +0 -8
- package/dist/prebuild/ReportClient.js +0 -3
- package/dist/types/src/SP__Polygon.test.d.ts +0 -1
- package/src/ReportClient.tsx +0 -164
- package/src/SP__Polygon.test.ts +0 -13
- package/testeranto/ReportClient.css +0 -11367
- package/testeranto/ReportClient.js +0 -24641
- package/testeranto/bundles/node/mothership/metafile.json +0 -389
- package/testeranto/bundles/node/mothership/src/PM/__tests__/nodeSidecar.testeranto.mjs +0 -1219
- package/testeranto/bundles/node/mothership/src/PM/__tests__/sidecar.testeranto.mjs +0 -1199
- package/testeranto/reports/mothership/config.json +0 -25
- package/testeranto/reports/mothership/src/PM/__tests__/nodeSidecar.testeranto/node/console_log.txt +0 -0
- package/testeranto/reports/mothership/src/PM/__tests__/nodeSidecar.testeranto/node/lint_errors.json +0 -1564
- package/testeranto/reports/mothership/src/PM/__tests__/nodeSidecar.testeranto/node/prompt.txt +0 -22
- package/testeranto/reports/mothership/src/PM/__tests__/nodeSidecar.testeranto/node/type_errors.txt +0 -35
- package/testeranto/reports/mothership/src/PM/__tests__/pureSidecar.testeranto/node/prompt.txt +0 -12
- package/testeranto/reports/mothership/src/PM/__tests__/pureSidecar.testeranto/node/type_errors.txt +0 -26
- package/testeranto/reports/mothership/src/PM/__tests__/sidecar.testeranto/node/bdd_errors.txt +0 -1
- package/testeranto/reports/mothership/src/PM/__tests__/sidecar.testeranto/node/console_log.txt +0 -0
- package/testeranto/reports/mothership/src/PM/__tests__/sidecar.testeranto/node/lint_errors.json +0 -1564
- package/testeranto/reports/mothership/src/PM/__tests__/sidecar.testeranto/node/log.txt +0 -0
- package/testeranto/reports/mothership/src/PM/__tests__/sidecar.testeranto/node/prompt.txt +0 -22
- package/testeranto/reports/mothership/src/PM/__tests__/sidecar.testeranto/node/tests.json +0 -56
- package/testeranto/reports/mothership/src/PM/__tests__/sidecar.testeranto/node/type_errors.txt +0 -29
- package/testeranto/reports/mothership/src/PM/__tests__/webSidecar.testeranto/node/prompt.txt +0 -12
- package/testeranto/reports/mothership/src/PM/__tests__/webSidecar.testeranto/node/type_errors.txt +0 -26
- package/testeranto/reports/mothership/src/mothership/test/node/bdd_errors.txt +0 -1
- package/testeranto/reports/mothership/src/mothership/test/node/console_log.txt +0 -4
- package/testeranto/reports/mothership/src/mothership/test/node/index.html +0 -20
- package/testeranto/reports/mothership/src/mothership/test/node/log.txt +0 -0
- package/testeranto/reports/mothership/src/mothership/test/node/prompt.txt +0 -12
- package/testeranto/reports/mothership/src/mothership/test/node/tests.json +0 -24
- package/testeranto/reports/mothership/src/mothership/test/node/type_errors.txt +0 -18
- package/testeranto/reports/mothership/summary.json +0 -9
- /package/testeranto/bundles/node/{mothership → allTests}/chunk-PG6KUKNP.mjs +0 -0
- /package/testeranto/bundles/pure/{mothership → allTests}/metafile.json +0 -0
- /package/testeranto/bundles/web/{mothership → allTests}/metafile.json +0 -0
- /package/testeranto/reports/{mothership/src/PM/__tests__/nodeSidecar.testeranto → allTests/src/lib/BaseSuite.test}/node/log.txt +0 -0
- /package/testeranto/reports/{mothership → allTests}/src/mothership/test/node/lint_errors.json +0 -0
|
@@ -1,389 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"errors": [],
|
|
3
|
-
"warnings": [],
|
|
4
|
-
"metafile": {
|
|
5
|
-
"inputs": {
|
|
6
|
-
"src/PM/sidecar.ts": {
|
|
7
|
-
"bytes": 1844,
|
|
8
|
-
"imports": [
|
|
9
|
-
{
|
|
10
|
-
"path": "../lib",
|
|
11
|
-
"kind": "import-statement",
|
|
12
|
-
"external": true
|
|
13
|
-
},
|
|
14
|
-
{
|
|
15
|
-
"path": "../lib",
|
|
16
|
-
"kind": "import-statement",
|
|
17
|
-
"external": true
|
|
18
|
-
}
|
|
19
|
-
],
|
|
20
|
-
"format": "esm"
|
|
21
|
-
},
|
|
22
|
-
"src/PM/nodeSidecar.ts": {
|
|
23
|
-
"bytes": 1942,
|
|
24
|
-
"imports": [
|
|
25
|
-
{
|
|
26
|
-
"path": "net",
|
|
27
|
-
"kind": "import-statement",
|
|
28
|
-
"external": true
|
|
29
|
-
},
|
|
30
|
-
{
|
|
31
|
-
"path": "../lib",
|
|
32
|
-
"kind": "import-statement",
|
|
33
|
-
"external": true
|
|
34
|
-
},
|
|
35
|
-
{
|
|
36
|
-
"path": "src/PM/sidecar.ts",
|
|
37
|
-
"kind": "import-statement",
|
|
38
|
-
"original": "./sidecar"
|
|
39
|
-
}
|
|
40
|
-
],
|
|
41
|
-
"format": "esm"
|
|
42
|
-
},
|
|
43
|
-
"src/lib/index.ts": {
|
|
44
|
-
"bytes": 3599,
|
|
45
|
-
"imports": [
|
|
46
|
-
{
|
|
47
|
-
"path": "../PM/pure.js",
|
|
48
|
-
"kind": "import-statement",
|
|
49
|
-
"external": true
|
|
50
|
-
},
|
|
51
|
-
{
|
|
52
|
-
"path": "../PM/node.js",
|
|
53
|
-
"kind": "import-statement",
|
|
54
|
-
"external": true
|
|
55
|
-
},
|
|
56
|
-
{
|
|
57
|
-
"path": "../PM/web.js",
|
|
58
|
-
"kind": "import-statement",
|
|
59
|
-
"external": true
|
|
60
|
-
},
|
|
61
|
-
{
|
|
62
|
-
"path": "../Types.js",
|
|
63
|
-
"kind": "import-statement",
|
|
64
|
-
"external": true
|
|
65
|
-
},
|
|
66
|
-
{
|
|
67
|
-
"path": "./abstractBase.js",
|
|
68
|
-
"kind": "import-statement",
|
|
69
|
-
"external": true
|
|
70
|
-
},
|
|
71
|
-
{
|
|
72
|
-
"path": "./types.js",
|
|
73
|
-
"kind": "import-statement",
|
|
74
|
-
"external": true
|
|
75
|
-
}
|
|
76
|
-
],
|
|
77
|
-
"format": "esm"
|
|
78
|
-
},
|
|
79
|
-
"src/lib/pmProxy.ts": {
|
|
80
|
-
"bytes": 8884,
|
|
81
|
-
"imports": [
|
|
82
|
-
{
|
|
83
|
-
"path": "./types",
|
|
84
|
-
"kind": "import-statement",
|
|
85
|
-
"external": true
|
|
86
|
-
}
|
|
87
|
-
],
|
|
88
|
-
"format": "esm"
|
|
89
|
-
},
|
|
90
|
-
"src/lib/abstractBase.ts": {
|
|
91
|
-
"bytes": 11318,
|
|
92
|
-
"imports": [
|
|
93
|
-
{
|
|
94
|
-
"path": ".",
|
|
95
|
-
"kind": "import-statement",
|
|
96
|
-
"external": true
|
|
97
|
-
},
|
|
98
|
-
{
|
|
99
|
-
"path": "./types.js",
|
|
100
|
-
"kind": "import-statement",
|
|
101
|
-
"external": true
|
|
102
|
-
},
|
|
103
|
-
{
|
|
104
|
-
"path": "src/lib/pmProxy.ts",
|
|
105
|
-
"kind": "import-statement",
|
|
106
|
-
"original": "./pmProxy.js"
|
|
107
|
-
}
|
|
108
|
-
],
|
|
109
|
-
"format": "esm"
|
|
110
|
-
},
|
|
111
|
-
"src/lib/basebuilder.ts": {
|
|
112
|
-
"bytes": 6058,
|
|
113
|
-
"imports": [
|
|
114
|
-
{
|
|
115
|
-
"path": "stream",
|
|
116
|
-
"kind": "import-statement",
|
|
117
|
-
"external": true
|
|
118
|
-
},
|
|
119
|
-
{
|
|
120
|
-
"path": "../Types.js",
|
|
121
|
-
"kind": "import-statement",
|
|
122
|
-
"external": true
|
|
123
|
-
},
|
|
124
|
-
{
|
|
125
|
-
"path": ".",
|
|
126
|
-
"kind": "import-statement",
|
|
127
|
-
"external": true
|
|
128
|
-
},
|
|
129
|
-
{
|
|
130
|
-
"path": "./types.js",
|
|
131
|
-
"kind": "import-statement",
|
|
132
|
-
"external": true
|
|
133
|
-
},
|
|
134
|
-
{
|
|
135
|
-
"path": "./abstractBase.js",
|
|
136
|
-
"kind": "import-statement",
|
|
137
|
-
"external": true
|
|
138
|
-
}
|
|
139
|
-
],
|
|
140
|
-
"format": "esm"
|
|
141
|
-
},
|
|
142
|
-
"src/lib/classBuilder.ts": {
|
|
143
|
-
"bytes": 3529,
|
|
144
|
-
"imports": [
|
|
145
|
-
{
|
|
146
|
-
"path": "../Types.js",
|
|
147
|
-
"kind": "import-statement",
|
|
148
|
-
"external": true
|
|
149
|
-
},
|
|
150
|
-
{
|
|
151
|
-
"path": "src/lib/basebuilder.ts",
|
|
152
|
-
"kind": "import-statement",
|
|
153
|
-
"original": "./basebuilder.js"
|
|
154
|
-
},
|
|
155
|
-
{
|
|
156
|
-
"path": "./types.js",
|
|
157
|
-
"kind": "import-statement",
|
|
158
|
-
"external": true
|
|
159
|
-
},
|
|
160
|
-
{
|
|
161
|
-
"path": "./index.js",
|
|
162
|
-
"kind": "import-statement",
|
|
163
|
-
"external": true
|
|
164
|
-
},
|
|
165
|
-
{
|
|
166
|
-
"path": "./abstractBase.js",
|
|
167
|
-
"kind": "import-statement",
|
|
168
|
-
"external": true
|
|
169
|
-
}
|
|
170
|
-
],
|
|
171
|
-
"format": "esm"
|
|
172
|
-
},
|
|
173
|
-
"src/lib/core.ts": {
|
|
174
|
-
"bytes": 4918,
|
|
175
|
-
"imports": [
|
|
176
|
-
{
|
|
177
|
-
"path": "../Types.js",
|
|
178
|
-
"kind": "import-statement",
|
|
179
|
-
"external": true
|
|
180
|
-
},
|
|
181
|
-
{
|
|
182
|
-
"path": "src/lib/index.ts",
|
|
183
|
-
"kind": "import-statement",
|
|
184
|
-
"original": "./index.js"
|
|
185
|
-
},
|
|
186
|
-
{
|
|
187
|
-
"path": "src/lib/abstractBase.ts",
|
|
188
|
-
"kind": "import-statement",
|
|
189
|
-
"original": "./abstractBase.js"
|
|
190
|
-
},
|
|
191
|
-
{
|
|
192
|
-
"path": "src/lib/classBuilder.ts",
|
|
193
|
-
"kind": "import-statement",
|
|
194
|
-
"original": "./classBuilder.js"
|
|
195
|
-
},
|
|
196
|
-
{
|
|
197
|
-
"path": "./types",
|
|
198
|
-
"kind": "import-statement",
|
|
199
|
-
"external": true
|
|
200
|
-
}
|
|
201
|
-
],
|
|
202
|
-
"format": "esm"
|
|
203
|
-
},
|
|
204
|
-
"src/PM/index.ts": {
|
|
205
|
-
"bytes": 1838,
|
|
206
|
-
"imports": [
|
|
207
|
-
{
|
|
208
|
-
"path": "puppeteer-core",
|
|
209
|
-
"kind": "import-statement",
|
|
210
|
-
"external": true
|
|
211
|
-
},
|
|
212
|
-
{
|
|
213
|
-
"path": "puppeteer-core/lib/esm/puppeteer",
|
|
214
|
-
"kind": "import-statement",
|
|
215
|
-
"external": true
|
|
216
|
-
},
|
|
217
|
-
{
|
|
218
|
-
"path": "../lib",
|
|
219
|
-
"kind": "import-statement",
|
|
220
|
-
"external": true
|
|
221
|
-
}
|
|
222
|
-
],
|
|
223
|
-
"format": "esm"
|
|
224
|
-
},
|
|
225
|
-
"src/PM/node.ts": {
|
|
226
|
-
"bytes": 7333,
|
|
227
|
-
"imports": [
|
|
228
|
-
{
|
|
229
|
-
"path": "net",
|
|
230
|
-
"kind": "import-statement",
|
|
231
|
-
"external": true
|
|
232
|
-
},
|
|
233
|
-
{
|
|
234
|
-
"path": "fs",
|
|
235
|
-
"kind": "import-statement",
|
|
236
|
-
"external": true
|
|
237
|
-
},
|
|
238
|
-
{
|
|
239
|
-
"path": "path",
|
|
240
|
-
"kind": "import-statement",
|
|
241
|
-
"external": true
|
|
242
|
-
},
|
|
243
|
-
{
|
|
244
|
-
"path": "puppeteer-core",
|
|
245
|
-
"kind": "import-statement",
|
|
246
|
-
"external": true
|
|
247
|
-
},
|
|
248
|
-
{
|
|
249
|
-
"path": "stream",
|
|
250
|
-
"kind": "import-statement",
|
|
251
|
-
"external": true
|
|
252
|
-
},
|
|
253
|
-
{
|
|
254
|
-
"path": "../lib",
|
|
255
|
-
"kind": "import-statement",
|
|
256
|
-
"external": true
|
|
257
|
-
},
|
|
258
|
-
{
|
|
259
|
-
"path": "src/PM/index.ts",
|
|
260
|
-
"kind": "import-statement",
|
|
261
|
-
"original": "."
|
|
262
|
-
}
|
|
263
|
-
],
|
|
264
|
-
"format": "esm"
|
|
265
|
-
},
|
|
266
|
-
"src/Node.ts": {
|
|
267
|
-
"bytes": 2721,
|
|
268
|
-
"imports": [
|
|
269
|
-
{
|
|
270
|
-
"path": "src/lib/core.ts",
|
|
271
|
-
"kind": "import-statement",
|
|
272
|
-
"original": "./lib/core.js"
|
|
273
|
-
},
|
|
274
|
-
{
|
|
275
|
-
"path": "src/lib/index.ts",
|
|
276
|
-
"kind": "import-statement",
|
|
277
|
-
"original": "./lib/index.js"
|
|
278
|
-
},
|
|
279
|
-
{
|
|
280
|
-
"path": "src/PM/node.ts",
|
|
281
|
-
"kind": "import-statement",
|
|
282
|
-
"original": "./PM/node.js"
|
|
283
|
-
}
|
|
284
|
-
],
|
|
285
|
-
"format": "esm"
|
|
286
|
-
},
|
|
287
|
-
"src/PM/__tests__/nodeSidecar.testeranto.ts": {
|
|
288
|
-
"bytes": 4183,
|
|
289
|
-
"imports": [
|
|
290
|
-
{
|
|
291
|
-
"path": "net",
|
|
292
|
-
"kind": "import-statement",
|
|
293
|
-
"external": true
|
|
294
|
-
},
|
|
295
|
-
{
|
|
296
|
-
"path": "../../lib",
|
|
297
|
-
"kind": "import-statement",
|
|
298
|
-
"external": true
|
|
299
|
-
},
|
|
300
|
-
{
|
|
301
|
-
"path": "src/PM/nodeSidecar.ts",
|
|
302
|
-
"kind": "import-statement",
|
|
303
|
-
"original": "../nodeSidecar"
|
|
304
|
-
},
|
|
305
|
-
{
|
|
306
|
-
"path": "src/Node.ts",
|
|
307
|
-
"kind": "import-statement",
|
|
308
|
-
"original": "../../Node"
|
|
309
|
-
},
|
|
310
|
-
{
|
|
311
|
-
"path": "../../Types",
|
|
312
|
-
"kind": "import-statement",
|
|
313
|
-
"external": true
|
|
314
|
-
}
|
|
315
|
-
],
|
|
316
|
-
"format": "esm"
|
|
317
|
-
}
|
|
318
|
-
},
|
|
319
|
-
"outputs": {
|
|
320
|
-
"testeranto/bundles/node/mothership/src/PM/__tests__/nodeSidecar.testeranto.mjs": {
|
|
321
|
-
"imports": [
|
|
322
|
-
{
|
|
323
|
-
"path": "net",
|
|
324
|
-
"kind": "import-statement",
|
|
325
|
-
"external": true
|
|
326
|
-
},
|
|
327
|
-
{
|
|
328
|
-
"path": "net",
|
|
329
|
-
"kind": "import-statement",
|
|
330
|
-
"external": true
|
|
331
|
-
},
|
|
332
|
-
{
|
|
333
|
-
"path": "fs",
|
|
334
|
-
"kind": "import-statement",
|
|
335
|
-
"external": true
|
|
336
|
-
},
|
|
337
|
-
{
|
|
338
|
-
"path": "path",
|
|
339
|
-
"kind": "import-statement",
|
|
340
|
-
"external": true
|
|
341
|
-
}
|
|
342
|
-
],
|
|
343
|
-
"exports": [
|
|
344
|
-
"default"
|
|
345
|
-
],
|
|
346
|
-
"entryPoint": "src/PM/__tests__/nodeSidecar.testeranto.ts",
|
|
347
|
-
"inputs": {
|
|
348
|
-
"src/PM/nodeSidecar.ts": {
|
|
349
|
-
"bytesInOutput": 1313
|
|
350
|
-
},
|
|
351
|
-
"src/PM/sidecar.ts": {
|
|
352
|
-
"bytesInOutput": 1544
|
|
353
|
-
},
|
|
354
|
-
"src/lib/index.ts": {
|
|
355
|
-
"bytesInOutput": 674
|
|
356
|
-
},
|
|
357
|
-
"src/lib/pmProxy.ts": {
|
|
358
|
-
"bytesInOutput": 3201
|
|
359
|
-
},
|
|
360
|
-
"src/lib/abstractBase.ts": {
|
|
361
|
-
"bytesInOutput": 6833
|
|
362
|
-
},
|
|
363
|
-
"src/lib/basebuilder.ts": {
|
|
364
|
-
"bytesInOutput": 2740
|
|
365
|
-
},
|
|
366
|
-
"src/lib/classBuilder.ts": {
|
|
367
|
-
"bytesInOutput": 2248
|
|
368
|
-
},
|
|
369
|
-
"src/lib/core.ts": {
|
|
370
|
-
"bytesInOutput": 2686
|
|
371
|
-
},
|
|
372
|
-
"src/PM/node.ts": {
|
|
373
|
-
"bytesInOutput": 5509
|
|
374
|
-
},
|
|
375
|
-
"src/PM/index.ts": {
|
|
376
|
-
"bytesInOutput": 20
|
|
377
|
-
},
|
|
378
|
-
"src/Node.ts": {
|
|
379
|
-
"bytesInOutput": 1285
|
|
380
|
-
},
|
|
381
|
-
"src/PM/__tests__/nodeSidecar.testeranto.ts": {
|
|
382
|
-
"bytesInOutput": 3204
|
|
383
|
-
}
|
|
384
|
-
},
|
|
385
|
-
"bytes": 31742
|
|
386
|
-
}
|
|
387
|
-
}
|
|
388
|
-
}
|
|
389
|
-
}
|