zile 0.0.13 → 0.0.15
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 +9 -1
- package/dist/Package.d.ts +3 -1
- package/dist/Package.d.ts.map +1 -1
- package/dist/Package.js +99 -15
- package/dist/Package.js.map +1 -1
- package/dist/internal/package.json +1 -1
- package/package.json +2 -2
- package/src/Package.ts +102 -15
- package/src/Packages.test.ts +12 -0
- package/src/__snapshots__/Cli.test.ts.snap +289 -14
- package/src/__snapshots__/Package.test.ts.snap +872 -214
- package/src/__snapshots__/Packages.test.ts.snap +144 -0
|
@@ -2,6 +2,56 @@
|
|
|
2
2
|
|
|
3
3
|
exports[`Packages.build > builds all packages 1`] = `
|
|
4
4
|
[
|
|
5
|
+
{
|
|
6
|
+
"packageJson": {
|
|
7
|
+
"exports": {
|
|
8
|
+
".": {
|
|
9
|
+
"default": "./dist/index.js",
|
|
10
|
+
"src": "./index.ts",
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
},
|
|
13
|
+
"./utils/*": {
|
|
14
|
+
"default": "./dist/utils/*.js",
|
|
15
|
+
"src": "./utils/*",
|
|
16
|
+
"types": "./dist/utils/*.d.ts",
|
|
17
|
+
},
|
|
18
|
+
},
|
|
19
|
+
"main": "./dist/index.js",
|
|
20
|
+
"module": "./dist/index.js",
|
|
21
|
+
"name": "wildcard-exports",
|
|
22
|
+
"sideEffects": false,
|
|
23
|
+
"type": "module",
|
|
24
|
+
"types": "./dist/index.d.ts",
|
|
25
|
+
"version": "0.0.0",
|
|
26
|
+
},
|
|
27
|
+
"tsConfig": {
|
|
28
|
+
"compilerOptions": {
|
|
29
|
+
"composite": false,
|
|
30
|
+
"declaration": true,
|
|
31
|
+
"declarationDir": undefined,
|
|
32
|
+
"declarationMap": true,
|
|
33
|
+
"emitDeclarationOnly": false,
|
|
34
|
+
"esModuleInterop": true,
|
|
35
|
+
"isolatedModules": true,
|
|
36
|
+
"module": "nodenext",
|
|
37
|
+
"moduleDetection": "force",
|
|
38
|
+
"moduleResolution": "nodenext",
|
|
39
|
+
"noEmit": false,
|
|
40
|
+
"outDir": "/repos/wildcard-exports/dist",
|
|
41
|
+
"skipLibCheck": true,
|
|
42
|
+
"sourceMap": true,
|
|
43
|
+
"strict": true,
|
|
44
|
+
"target": "es2021",
|
|
45
|
+
"verbatimModuleSyntax": true,
|
|
46
|
+
},
|
|
47
|
+
"exclude": [],
|
|
48
|
+
"include": [
|
|
49
|
+
"/repos/wildcard-exports/index.ts",
|
|
50
|
+
"/repos/wildcard-exports/utils/format.ts",
|
|
51
|
+
"/repos/wildcard-exports/utils/helper.ts",
|
|
52
|
+
],
|
|
53
|
+
},
|
|
54
|
+
},
|
|
5
55
|
{
|
|
6
56
|
"packageJson": {
|
|
7
57
|
"exports": {
|
|
@@ -100,6 +150,100 @@ exports[`Packages.build > builds all packages 1`] = `
|
|
|
100
150
|
],
|
|
101
151
|
},
|
|
102
152
|
},
|
|
153
|
+
{
|
|
154
|
+
"packageJson": {
|
|
155
|
+
"exports": {
|
|
156
|
+
".": {
|
|
157
|
+
"default": "./dist/index.js",
|
|
158
|
+
"src": "./src/index.ts",
|
|
159
|
+
"types": "./dist/index.d.ts",
|
|
160
|
+
},
|
|
161
|
+
"./globals": {
|
|
162
|
+
"src": "./src/globals.d.ts",
|
|
163
|
+
"types": "./dist/globals.d.ts",
|
|
164
|
+
},
|
|
165
|
+
},
|
|
166
|
+
"main": "./dist/index.js",
|
|
167
|
+
"module": "./dist/index.js",
|
|
168
|
+
"name": "dts-exports-object",
|
|
169
|
+
"sideEffects": false,
|
|
170
|
+
"type": "module",
|
|
171
|
+
"types": "./dist/index.d.ts",
|
|
172
|
+
"version": "0.0.0",
|
|
173
|
+
},
|
|
174
|
+
"tsConfig": {
|
|
175
|
+
"compilerOptions": {
|
|
176
|
+
"composite": false,
|
|
177
|
+
"declaration": true,
|
|
178
|
+
"declarationDir": undefined,
|
|
179
|
+
"declarationMap": true,
|
|
180
|
+
"emitDeclarationOnly": false,
|
|
181
|
+
"esModuleInterop": true,
|
|
182
|
+
"isolatedModules": true,
|
|
183
|
+
"module": "nodenext",
|
|
184
|
+
"moduleDetection": "force",
|
|
185
|
+
"moduleResolution": "nodenext",
|
|
186
|
+
"noEmit": false,
|
|
187
|
+
"outDir": "/repos/dts-exports-object/dist",
|
|
188
|
+
"skipLibCheck": true,
|
|
189
|
+
"sourceMap": true,
|
|
190
|
+
"strict": true,
|
|
191
|
+
"target": "es2021",
|
|
192
|
+
"verbatimModuleSyntax": true,
|
|
193
|
+
},
|
|
194
|
+
"exclude": [],
|
|
195
|
+
"include": [
|
|
196
|
+
"/repos/dts-exports-object/src/index.ts",
|
|
197
|
+
],
|
|
198
|
+
},
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
"packageJson": {
|
|
202
|
+
"exports": {
|
|
203
|
+
".": {
|
|
204
|
+
"default": "./dist/index.js",
|
|
205
|
+
"src": "./src/index.ts",
|
|
206
|
+
"types": "./dist/index.d.ts",
|
|
207
|
+
},
|
|
208
|
+
"./globals": {
|
|
209
|
+
"src": "./src/globals.d.ts",
|
|
210
|
+
"types": "./dist/globals.d.ts",
|
|
211
|
+
},
|
|
212
|
+
},
|
|
213
|
+
"main": "./dist/index.js",
|
|
214
|
+
"module": "./dist/index.js",
|
|
215
|
+
"name": "dts-exports",
|
|
216
|
+
"sideEffects": false,
|
|
217
|
+
"type": "module",
|
|
218
|
+
"types": "./dist/index.d.ts",
|
|
219
|
+
"version": "0.0.0",
|
|
220
|
+
},
|
|
221
|
+
"tsConfig": {
|
|
222
|
+
"compilerOptions": {
|
|
223
|
+
"composite": false,
|
|
224
|
+
"declaration": true,
|
|
225
|
+
"declarationDir": undefined,
|
|
226
|
+
"declarationMap": true,
|
|
227
|
+
"emitDeclarationOnly": false,
|
|
228
|
+
"esModuleInterop": true,
|
|
229
|
+
"isolatedModules": true,
|
|
230
|
+
"module": "nodenext",
|
|
231
|
+
"moduleDetection": "force",
|
|
232
|
+
"moduleResolution": "nodenext",
|
|
233
|
+
"noEmit": false,
|
|
234
|
+
"outDir": "/repos/dts-exports/dist",
|
|
235
|
+
"skipLibCheck": true,
|
|
236
|
+
"sourceMap": true,
|
|
237
|
+
"strict": true,
|
|
238
|
+
"target": "es2021",
|
|
239
|
+
"verbatimModuleSyntax": true,
|
|
240
|
+
},
|
|
241
|
+
"exclude": [],
|
|
242
|
+
"include": [
|
|
243
|
+
"/repos/dts-exports/src/index.ts",
|
|
244
|
+
],
|
|
245
|
+
},
|
|
246
|
+
},
|
|
103
247
|
{
|
|
104
248
|
"packageJson": {
|
|
105
249
|
"exports": {
|