jiek 2.2.7 → 2.3.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.
Files changed (100) hide show
  1. package/bin/build.cjs +2 -0
  2. package/bin/index.cjs +2 -0
  3. package/bin-helper/index.cjs +19 -31
  4. package/dist/.internal/.chunks/filterSupport.4rM7f6jB.cjs +114 -0
  5. package/dist/.internal/.chunks/filterSupport.BXWpLBpT.js +104 -0
  6. package/dist/{cli.js → .internal/.chunks/index.B6RQz1DZ.js} +1 -737
  7. package/dist/.internal/.chunks/index.BHuJRlvZ.js +9059 -0
  8. package/dist/.internal/.chunks/index.Daihq2aI.cjs +9071 -0
  9. package/dist/{cli.cjs → .internal/.chunks/index.DlHFuTjM.cjs} +1 -759
  10. package/dist/.internal/.chunks/loadConfig.CFfzkm_p.js +110 -0
  11. package/dist/.internal/.chunks/loadConfig.OOKddvHF.cjs +117 -0
  12. package/dist/{cli-only-build.cjs → .internal/bin/common.cjs} +225 -444
  13. package/dist/.internal/bin/common.d.cts +18 -0
  14. package/dist/.internal/bin/common.d.ts +18 -0
  15. package/dist/{cli-only-build.js → .internal/bin/common.js} +220 -438
  16. package/dist/.internal/bin/parseArgv.cjs +33 -0
  17. package/dist/.internal/bin/parseArgv.d.cts +5 -0
  18. package/dist/.internal/bin/parseArgv.d.ts +5 -0
  19. package/dist/.internal/bin/parseArgv.js +27 -0
  20. package/dist/.internal/bridge.cjs +30 -0
  21. package/dist/.internal/bridge.d.cts +39 -0
  22. package/dist/.internal/bridge.d.ts +39 -0
  23. package/dist/.internal/bridge.js +27 -0
  24. package/dist/.internal/rollup/base.cjs +10 -0
  25. package/dist/{cli-only-build.d.cts → .internal/rollup/base.d.cts} +8 -15
  26. package/dist/{cli-only-build.d.ts → .internal/rollup/base.d.ts} +8 -15
  27. package/dist/.internal/rollup/base.js +7 -0
  28. package/dist/.internal/rollup/bundle-analyzer.cjs +51 -0
  29. package/dist/.internal/rollup/bundle-analyzer.d.cts +92 -0
  30. package/dist/.internal/rollup/bundle-analyzer.d.ts +92 -0
  31. package/dist/.internal/rollup/bundle-analyzer.js +45 -0
  32. package/dist/.internal/utils/filterSupport.cjs +18 -0
  33. package/dist/.internal/utils/filterSupport.d.cts +15 -0
  34. package/dist/.internal/utils/filterSupport.d.ts +15 -0
  35. package/dist/.internal/utils/filterSupport.js +8 -0
  36. package/dist/.internal/utils/getInternalModuleName.cjs +5 -0
  37. package/dist/.internal/utils/getInternalModuleName.d.cts +3 -0
  38. package/dist/.internal/utils/getInternalModuleName.d.ts +3 -0
  39. package/dist/.internal/utils/getInternalModuleName.js +3 -0
  40. package/dist/.internal/utils/intersection.cjs +5 -0
  41. package/dist/.internal/utils/intersection.d.cts +3 -0
  42. package/dist/.internal/utils/intersection.d.ts +3 -0
  43. package/dist/.internal/utils/intersection.js +3 -0
  44. package/dist/.internal/utils/loadConfig.cjs +14 -0
  45. package/dist/.internal/utils/loadConfig.d.cts +10 -0
  46. package/dist/.internal/utils/loadConfig.d.ts +10 -0
  47. package/dist/.internal/utils/loadConfig.js +9 -0
  48. package/dist/.internal/utils/recursiveListFiles.cjs +19 -0
  49. package/dist/.internal/utils/recursiveListFiles.d.cts +3 -0
  50. package/dist/.internal/utils/recursiveListFiles.d.ts +3 -0
  51. package/dist/.internal/utils/recursiveListFiles.js +13 -0
  52. package/dist/.internal/utils/resolveExports.cjs +118 -0
  53. package/dist/.internal/utils/resolveExports.d.cts +26 -0
  54. package/dist/.internal/utils/resolveExports.d.ts +26 -0
  55. package/dist/.internal/utils/resolveExports.js +111 -0
  56. package/dist/.internal/utils/ts.cjs +68 -0
  57. package/dist/.internal/utils/ts.d.cts +3 -0
  58. package/dist/.internal/utils/ts.d.ts +3 -0
  59. package/dist/.internal/utils/ts.js +62 -0
  60. package/dist/bin/build.cjs +10 -0
  61. package/dist/bin/index.cjs +501 -0
  62. package/dist/index.d.cts +12 -114
  63. package/dist/index.d.ts +12 -114
  64. package/dist/rollup/index.cjs +280 -4573
  65. package/dist/rollup/index.d.cts +7 -1
  66. package/dist/rollup/index.d.ts +7 -1
  67. package/dist/rollup/index.js +268 -4558
  68. package/package.json +15 -23
  69. package/src/bin/build.cts +5 -0
  70. package/src/bin/common.ts +3 -0
  71. package/src/bin/index.cts +7 -0
  72. package/src/bridge.ts +1 -1
  73. package/src/commands/base.ts +3 -3
  74. package/src/commands/build/analyzer.ts +5 -5
  75. package/src/commands/build/client/analyzer.tsx +1 -1
  76. package/src/commands/build/client/index.ts +5 -7
  77. package/src/commands/build.ts +226 -211
  78. package/src/commands/meta.ts +1 -1
  79. package/src/commands/publish.ts +113 -32
  80. package/src/index.ts +6 -1
  81. package/src/rollup/base.ts +2 -2
  82. package/src/rollup/index.ts +321 -124
  83. package/src/rollup/plugins/with-external.ts +23 -0
  84. package/src/rollup/utils/externalResolver.ts +20 -8
  85. package/src/utils/checkDependency.ts +1 -1
  86. package/src/utils/filterSupport.ts +17 -16
  87. package/src/utils/getInternalModuleName.ts +5 -0
  88. package/src/utils/intersection.ts +1 -0
  89. package/src/utils/{recusiveListFiles.ts → recursiveListFiles.ts} +2 -2
  90. package/src/utils/{getExports.ts → resolveExports.ts} +16 -14
  91. package/bin/jiek-build.js +0 -16
  92. package/bin/jiek.js +0 -13
  93. package/cli/package.json +0 -1
  94. package/cli-only-build/package.json +0 -1
  95. package/dist/cli.d.cts +0 -14
  96. package/dist/cli.d.ts +0 -14
  97. package/src/cli-only-build.ts +0 -11
  98. package/src/cli.ts +0 -6
  99. /package/{src/bin/build.ts → .jiek-production-tag} +0 -0
  100. /package/src/{parseArgv.ts → bin/parseArgv.ts} +0 -0
@@ -0,0 +1,501 @@
1
+ 'use strict';
2
+
3
+ require('#~/bin/common');
4
+ var childProcess = require('node:child_process');
5
+ var fs = require('node:fs');
6
+ var path = require('node:path');
7
+ var process = require('node:process');
8
+ var bumper = require('@jiek/utils/bumper');
9
+ var commander = require('commander');
10
+ var detectIndent = require('detect-indent');
11
+ var jsoncParser = require('jsonc-parser');
12
+ var filterSupport = require('#~/utils/filterSupport');
13
+ var loadConfig = require('#~/utils/loadConfig');
14
+ var resolveExports = require('#~/utils/resolveExports');
15
+ var getInternalModuleName = require('#~/utils/getInternalModuleName');
16
+ var parseArgv = require('#~/bin/parseArgv');
17
+
18
+ function _interopDefault (e) { return e && e.__esModule ? e : { default: e }; }
19
+
20
+ function _interopNamespace(e) {
21
+ if (e && e.__esModule) return e;
22
+ var n = Object.create(null);
23
+ if (e) {
24
+ Object.keys(e).forEach(function (k) {
25
+ if (k !== 'default') {
26
+ var d = Object.getOwnPropertyDescriptor(e, k);
27
+ Object.defineProperty(n, k, d.get ? d : {
28
+ enumerable: true,
29
+ get: function () { return e[k]; }
30
+ });
31
+ }
32
+ });
33
+ }
34
+ n.default = e;
35
+ return Object.freeze(n);
36
+ }
37
+
38
+ var childProcess__namespace = /*#__PURE__*/_interopNamespace(childProcess);
39
+ var fs__default = /*#__PURE__*/_interopDefault(fs);
40
+ var path__default = /*#__PURE__*/_interopDefault(path);
41
+ var process__default = /*#__PURE__*/_interopDefault(process);
42
+ var detectIndent__default = /*#__PURE__*/_interopDefault(detectIndent);
43
+ var parseArgv__default = /*#__PURE__*/_interopDefault(parseArgv);
44
+
45
+ const outdirDescription = `
46
+ The output directory of the build, which relative to the target subpackage root directory.
47
+ Support with variables: 'PKG_NAME',
48
+ .e.g. 'dist/{{PKG_NAME}}'.
49
+ `.trim();
50
+
51
+ const description = `
52
+ Publish package to npm registry, and auto generate exports field and other fields in published package.json.
53
+ If you want to through the options to the \`pnpm publish\` command, you can pass the options after '--'.
54
+ `.trim();
55
+ async function forEachSelectedProjectsGraphEntries(callback) {
56
+ const { value = {} } = await filterSupport.getSelectedProjectsGraph() ?? {};
57
+ const selectedProjectsGraphEntries = Object.entries(value);
58
+ if (selectedProjectsGraphEntries.length === 0) {
59
+ throw new Error("no packages selected");
60
+ }
61
+ for (const [dir, manifest] of selectedProjectsGraphEntries) {
62
+ callback(dir, manifest);
63
+ }
64
+ }
65
+ commander.program.command("publish").description(description).aliases(["pub", "p"]).option("-b, --bumper <bumper>", "bump version", "patch").option("-no-b, --no-bumper", "no bump version").option("-o, --outdir <OUTDIR>", outdirDescription, String, "dist").action(async ({ outdir, bumper: bumper$1 }) => {
66
+ let shouldPassThrough = false;
67
+ const passThroughOptions = process__default.default.argv.reduce(
68
+ (acc, value) => {
69
+ if (shouldPassThrough) {
70
+ acc.push(value);
71
+ }
72
+ if (value === "--") {
73
+ shouldPassThrough = true;
74
+ }
75
+ return acc;
76
+ },
77
+ []
78
+ );
79
+ await forEachSelectedProjectsGraphEntries((dir) => {
80
+ const args = ["pnpm", "publish", "--access", "public", "--no-git-checks"];
81
+ if (bumper$1 && bumper.TAGS.includes(bumper$1)) {
82
+ args.push("--tag", bumper$1);
83
+ }
84
+ args.push(...passThroughOptions);
85
+ childProcess__namespace.execSync(args.join(" "), {
86
+ cwd: dir,
87
+ stdio: "inherit",
88
+ env: {
89
+ ...process__default.default.env,
90
+ JIEK_PUBLISH_OUTDIR: JSON.stringify(outdir),
91
+ JIEK_PUBLISH_BUMPER: JSON.stringify(bumper$1)
92
+ }
93
+ });
94
+ });
95
+ });
96
+ async function prepublish({ bumper: bumper$1 } = {}) {
97
+ const {
98
+ JIEK_PUBLISH_OUTDIR: outdirEnv,
99
+ JIEK_PUBLISH_BUMPER: bumperEnv
100
+ } = process__default.default.env;
101
+ const outdir = outdirEnv ? JSON.parse(outdirEnv) : "dist";
102
+ bumper$1 = bumper$1 ?? (bumperEnv ? JSON.parse(bumperEnv) : false);
103
+ const generateNewManifest = (dir, manifest, config) => {
104
+ const {
105
+ name,
106
+ type,
107
+ exports: entrypoints,
108
+ imports: internalEntrypoints
109
+ } = manifest;
110
+ if (!name) {
111
+ throw new Error(`package.json in ${dir} must have a name field`);
112
+ }
113
+ const pkgIsModule = type === "module";
114
+ const newManifest = { ...manifest };
115
+ const commonOptions = {
116
+ pkgIsModule,
117
+ pkgName: name,
118
+ config,
119
+ dir,
120
+ noFilter: true,
121
+ isPublish: true
122
+ };
123
+ let resolvedOutdir = outdir;
124
+ if (entrypoints) {
125
+ const [resolvedEntrypoints, exports, _resolvedOutdir] = resolveExports.resolveExports({
126
+ entrypoints,
127
+ defaultOutdir: outdir,
128
+ ...commonOptions
129
+ });
130
+ newManifest.exports = {
131
+ ...resolvedEntrypoints,
132
+ ...exports
133
+ };
134
+ if (resolvedOutdir === outdir) {
135
+ resolvedOutdir = _resolvedOutdir;
136
+ }
137
+ }
138
+ if (internalEntrypoints) {
139
+ const [resolvedInternalEntrypoints, imports, _resolvedOutdir] = resolveExports.resolveExports({
140
+ entrypoints: internalEntrypoints,
141
+ defaultOutdir: `${outdir}/.internal`,
142
+ ...commonOptions
143
+ });
144
+ newManifest.imports = {
145
+ ...resolvedInternalEntrypoints,
146
+ ...imports
147
+ };
148
+ if (resolvedOutdir === outdir) {
149
+ resolvedOutdir = _resolvedOutdir;
150
+ }
151
+ }
152
+ return [newManifest, resolvedOutdir];
153
+ };
154
+ const generateNewPackageJSONString = ({
155
+ config,
156
+ oldJSONString,
157
+ oldJSON,
158
+ manifest,
159
+ formattingOptions
160
+ }) => {
161
+ const internalModuleName = getInternalModuleName.getInternalModuleName(manifest.name);
162
+ let newJSONString = oldJSONString;
163
+ const update = (path2, value) => {
164
+ newJSONString = jsoncParser.applyEdits(
165
+ newJSONString,
166
+ jsoncParser.modify(newJSONString, path2, value, { formattingOptions })
167
+ );
168
+ };
169
+ update(["publishConfig", "typesVersions"], {
170
+ "<5.0": {
171
+ "*": [
172
+ "*",
173
+ "./*",
174
+ "./*/index.d.ts",
175
+ "./*/index.d.mts",
176
+ "./*/index.d.cts"
177
+ ]
178
+ }
179
+ });
180
+ if (config.experimental?.importsDowngrade) {
181
+ update(["dependencies", internalModuleName], `file:./${outdir}/.internal`);
182
+ update(["dependenciesMeta", internalModuleName], {
183
+ "injected": true
184
+ });
185
+ update(["imports"], void 0);
186
+ }
187
+ for (const [key, value] of Object.entries(manifest)) {
188
+ if (key === "version") continue;
189
+ if (JSON.stringify(value) === JSON.stringify(oldJSON[key])) continue;
190
+ if (key !== "exports") {
191
+ newJSONString = jsoncParser.applyEdits(
192
+ newJSONString,
193
+ jsoncParser.modify(
194
+ newJSONString,
195
+ ["publishConfig", key],
196
+ value,
197
+ { formattingOptions }
198
+ )
199
+ );
200
+ } else {
201
+ const exports = value;
202
+ for (const [k, v] of Object.entries(exports)) {
203
+ newJSONString = jsoncParser.applyEdits(
204
+ newJSONString,
205
+ jsoncParser.modify(
206
+ newJSONString,
207
+ ["publishConfig", "exports", k],
208
+ v,
209
+ { formattingOptions }
210
+ )
211
+ );
212
+ }
213
+ const index = exports?.["."];
214
+ const indexPublishConfig = {};
215
+ if (index) {
216
+ switch (typeof index) {
217
+ case "string":
218
+ indexPublishConfig[manifest?.type === "module" ? "module" : "main"] = index;
219
+ break;
220
+ case "object": {
221
+ const indexExports = index;
222
+ indexPublishConfig.main = indexExports.require ?? indexExports.default;
223
+ indexPublishConfig.module = indexExports.import ?? indexExports.module ?? indexExports.default;
224
+ indexPublishConfig.types = indexExports.types;
225
+ break;
226
+ }
227
+ }
228
+ indexPublishConfig.types = indexPublishConfig[manifest?.type === "module" ? "module" : "main"].replace(/\.([cm]?)js$/, ".d.$1ts");
229
+ for (const [k, v] of Object.entries(indexPublishConfig)) {
230
+ if (v === void 0) continue;
231
+ newJSONString = jsoncParser.applyEdits(
232
+ newJSONString,
233
+ jsoncParser.modify(
234
+ newJSONString,
235
+ ["publishConfig", k],
236
+ v,
237
+ { formattingOptions }
238
+ )
239
+ );
240
+ }
241
+ }
242
+ }
243
+ }
244
+ if (oldJSON.devDependencies) {
245
+ newJSONString = jsoncParser.applyEdits(
246
+ newJSONString,
247
+ jsoncParser.modify(
248
+ newJSONString,
249
+ ["devDependencies"],
250
+ void 0,
251
+ { formattingOptions }
252
+ )
253
+ );
254
+ }
255
+ if (oldJSON.peerDependencies) {
256
+ const peerDependenciesMeta = Object.keys(oldJSON.peerDependencies).reduce(
257
+ (acc, key) => {
258
+ acc[key] = { optional: true };
259
+ return acc;
260
+ },
261
+ {}
262
+ );
263
+ newJSONString = jsoncParser.applyEdits(
264
+ newJSONString,
265
+ jsoncParser.modify(
266
+ newJSONString,
267
+ ["peerDependenciesMeta"],
268
+ peerDependenciesMeta,
269
+ { formattingOptions }
270
+ )
271
+ );
272
+ }
273
+ if (oldJSON.files) {
274
+ newJSONString = jsoncParser.applyEdits(
275
+ newJSONString,
276
+ jsoncParser.modify(
277
+ newJSONString,
278
+ ["files"],
279
+ void 0,
280
+ { formattingOptions }
281
+ )
282
+ );
283
+ }
284
+ return newJSONString;
285
+ };
286
+ await forEachSelectedProjectsGraphEntries((dir, originalManifest) => {
287
+ const config = loadConfig.loadConfig(dir);
288
+ const [manifest, resolvedOutdir] = generateNewManifest(dir, originalManifest, config);
289
+ const resolveByDir = (...paths) => path__default.default.resolve(dir, ...paths);
290
+ const oldJSONString = fs__default.default.readFileSync(resolveByDir("package.json"), "utf-8");
291
+ const oldJSON = JSON.parse(oldJSONString);
292
+ if (typeof oldJSON.version !== "string") {
293
+ throw new TypeError(`${dir}/package.json must have a version field with a string value`);
294
+ }
295
+ const { indent = " " } = detectIndent__default.default(oldJSONString);
296
+ const formattingOptions = {
297
+ tabSize: indent.length,
298
+ insertSpaces: true
299
+ };
300
+ const newVersion = bumper$1 ? bumper.bump(oldJSON.version, bumper$1 === true ? "patch" : bumper$1) : oldJSON.version;
301
+ const modifyVersionPackageJSON = jsoncParser.applyEdits(
302
+ oldJSONString,
303
+ jsoncParser.modify(oldJSONString, ["version"], newVersion, { formattingOptions })
304
+ );
305
+ const newJSONString = generateNewPackageJSONString({
306
+ config,
307
+ oldJSONString: modifyVersionPackageJSON,
308
+ oldJSON: {
309
+ ...oldJSON,
310
+ version: newVersion
311
+ },
312
+ manifest,
313
+ formattingOptions
314
+ });
315
+ const withPublishConfigDirectoryOldJSONString = jsoncParser.applyEdits(
316
+ modifyVersionPackageJSON,
317
+ jsoncParser.modify(modifyVersionPackageJSON, ["publishConfig", "directory"], resolvedOutdir, { formattingOptions })
318
+ );
319
+ if (!fs__default.default.existsSync(resolveByDir(resolvedOutdir))) {
320
+ fs__default.default.mkdirSync(resolveByDir(resolvedOutdir));
321
+ }
322
+ const jiekTempDir = resolveByDir("node_modules/.jiek/.tmp");
323
+ if (!fs__default.default.existsSync(resolveByDir(jiekTempDir))) {
324
+ fs__default.default.mkdirSync(resolveByDir(jiekTempDir), { recursive: true });
325
+ }
326
+ fs__default.default.writeFileSync(resolveByDir(resolvedOutdir, "package.json"), newJSONString);
327
+ fs__default.default.writeFileSync(resolveByDir(jiekTempDir, "package.json"), modifyVersionPackageJSON);
328
+ fs__default.default.writeFileSync(resolveByDir("package.json"), withPublishConfigDirectoryOldJSONString);
329
+ const allBuildFiles = fs__default.default.readdirSync(resolveByDir(resolvedOutdir), { recursive: true }).filter((file) => typeof file === "string").filter((file) => file !== "package.json");
330
+ const resolvedExports = manifest.exports;
331
+ Object.keys(resolvedExports).forEach((key) => {
332
+ if (key === ".") return;
333
+ if (/\.[cm]?js$/.test(key)) return;
334
+ const resourceFileSuffixes = [
335
+ ".d.ts",
336
+ ".d.mts",
337
+ ".d.cts",
338
+ ".css",
339
+ ".scss",
340
+ ".sass",
341
+ ".less",
342
+ ".styl",
343
+ ".stylus",
344
+ ".json",
345
+ ".json5"
346
+ ];
347
+ if (resourceFileSuffixes.find((suffix) => key.endsWith(suffix))) return;
348
+ const value = resolvedExports[key];
349
+ const filepath = resolveByDir(resolvedOutdir, key);
350
+ fs__default.default.mkdirSync(filepath, { recursive: true });
351
+ const pkgJSONPath = resolveByDir(resolvedOutdir, key, "package.json");
352
+ const relativePath = Array.from({ length: key.split("/").length - 1 }, () => "..").join("/");
353
+ const { type } = manifest;
354
+ const pkgJSON = { type };
355
+ if ("default" in value) {
356
+ pkgJSON[type === "module" ? "module" : "main"] = [
357
+ relativePath,
358
+ value.default?.replace(/^\.\//, "")
359
+ ].join("/");
360
+ }
361
+ if ("import" in value) {
362
+ pkgJSON.module = [
363
+ relativePath,
364
+ value.import?.replace(/^\.\//, "")
365
+ ].join("/");
366
+ }
367
+ if ("require" in value) {
368
+ pkgJSON.main = [
369
+ relativePath,
370
+ value.require?.replace(/^\.\//, "")
371
+ ].join("/");
372
+ }
373
+ fs__default.default.writeFileSync(pkgJSONPath, JSON.stringify(pkgJSON));
374
+ });
375
+ fs__default.default.mkdirSync(resolveByDir(resolvedOutdir, resolvedOutdir));
376
+ for (const file of allBuildFiles) {
377
+ const filepath = resolveByDir(resolvedOutdir, file);
378
+ const newFilepath = resolveByDir(resolvedOutdir, resolvedOutdir, file);
379
+ const stat = fs__default.default.statSync(filepath);
380
+ if (stat.isDirectory()) {
381
+ fs__default.default.mkdirSync(newFilepath, { recursive: true });
382
+ continue;
383
+ }
384
+ if (stat.isFile()) {
385
+ fs__default.default.cpSync(filepath, newFilepath);
386
+ fs__default.default.rmSync(filepath);
387
+ }
388
+ }
389
+ if (oldJSON.files) {
390
+ if (Array.isArray(oldJSON.files)) {
391
+ if (oldJSON.files.every((file) => typeof file !== "string")) {
392
+ throw new TypeError(`${dir}/package.json files field must be an array of string`);
393
+ }
394
+ } else {
395
+ throw new TypeError(`${dir}/package.json files field must be an array`);
396
+ }
397
+ }
398
+ const resolvedOutdirAbs = resolveByDir(resolvedOutdir);
399
+ const files = (oldJSON.files ?? fs__default.default.readdirSync(resolveByDir("."))).filter(
400
+ (file) => ![
401
+ "node_modules",
402
+ "package.json",
403
+ "pnpm-lock.yaml"
404
+ ].includes(file) && resolveByDir(file) !== resolvedOutdirAbs
405
+ );
406
+ for (const file of files) {
407
+ const path2 = resolveByDir(file);
408
+ try {
409
+ const stat = fs__default.default.statSync(path2);
410
+ if (stat.isDirectory()) {
411
+ fs__default.default.cpSync(path2, resolveByDir(resolvedOutdir, file), { recursive: true });
412
+ continue;
413
+ }
414
+ if (stat.isFile()) {
415
+ fs__default.default.cpSync(path2, resolveByDir(resolvedOutdir, file));
416
+ continue;
417
+ }
418
+ } catch (e) {
419
+ console.warn(String(e));
420
+ continue;
421
+ }
422
+ throw new Error(`file type of ${path2} is not supported`);
423
+ }
424
+ if (config.experimental?.importsDowngrade && "imports" in manifest && manifest.imports) {
425
+ fs__default.default.writeFileSync(
426
+ resolveByDir(resolvedOutdir, resolvedOutdir, ".internal", "package.json"),
427
+ JSON.stringify(
428
+ {
429
+ name: getInternalModuleName.getInternalModuleName(manifest.name),
430
+ exports: JSON.parse(
431
+ JSON.stringify(manifest.imports).replaceAll("#", "./").replaceAll("~", "")
432
+ )
433
+ },
434
+ null,
435
+ 2
436
+ )
437
+ );
438
+ }
439
+ const jiekProductionTag = path__default.default.resolve(resolvedOutdir, ".jiek-production-tag");
440
+ if (!fs__default.default.existsSync(jiekProductionTag)) {
441
+ fs__default.default.writeFileSync(jiekProductionTag, "");
442
+ }
443
+ });
444
+ }
445
+ async function postpublish() {
446
+ await forEachSelectedProjectsGraphEntries((dir) => {
447
+ const jiekTempDir = path__default.default.resolve(dir, "node_modules/.jiek/.tmp");
448
+ const packageJSONPath = path__default.default.resolve(dir, "package.json");
449
+ const { name, version } = JSON.parse(fs__default.default.readFileSync(packageJSONPath, "utf-8"));
450
+ const jiekTempPackageJSONPath = path__default.default.resolve(jiekTempDir, "package.json");
451
+ if (fs__default.default.existsSync(jiekTempPackageJSONPath)) {
452
+ fs__default.default.copyFileSync(jiekTempPackageJSONPath, packageJSONPath);
453
+ fs__default.default.rmSync(jiekTempPackageJSONPath);
454
+ console.log(`${dir}/package.json has been restored`);
455
+ console.log(
456
+ `if you want to check the compatibility of the package, you can visit: https://arethetypeswrong.github.io/?p=${name}%40${version}`
457
+ );
458
+ } else {
459
+ throw new Error(
460
+ `jiek temp \`${dir}/package.json\` not found, please confirm the jiek pre-publish command has been executed`
461
+ );
462
+ }
463
+ });
464
+ }
465
+ commander.program.action(async () => {
466
+ const {
467
+ npm_lifecycle_event: NPM_LIFECYCLE_EVENT
468
+ } = process__default.default.env;
469
+ switch (NPM_LIFECYCLE_EVENT) {
470
+ case "prepublish":
471
+ await prepublish();
472
+ break;
473
+ case "postpublish":
474
+ await postpublish();
475
+ break;
476
+ default:
477
+ commander.program.help();
478
+ }
479
+ });
480
+ const prepublishDescription = `
481
+ Prepare package.json for publish, you can add \`jk\` to the \`prepublish\` script in package.json, the command will automatically run \`jk prepublish\`.
482
+ .e.g
483
+ {
484
+ "scripts": {
485
+ "prepublish": "jk"
486
+ }
487
+ }
488
+ `.trim();
489
+ commander.program.command("prepublish").description(prepublishDescription).option("-b, --bumper <bumper>", "bump version").option("-no-b, --no-bumper", "no bump version").action(prepublish);
490
+ const postpublishDescription = `
491
+ Restore package.json after publish, you can add \`jk\` to the \`postpublish\` script in package.json, the command will automatically run \`jk postpublish\`.
492
+ .e.g
493
+ {
494
+ "scripts": {
495
+ "postpublish": "jk"
496
+ }
497
+ }
498
+ `.trim();
499
+ commander.program.command("postpublish").description(postpublishDescription).action(postpublish);
500
+
501
+ parseArgv__default.default();
package/dist/index.d.cts CHANGED
@@ -1,116 +1,4 @@
1
- import * as _rollup_plugin_terser from '@rollup/plugin-terser';
2
- import * as rollup_plugin_swc3 from 'rollup-plugin-swc3';
3
- import * as rollup_plugin_esbuild from 'rollup-plugin-esbuild';
4
- import { InputPluginOption, OutputOptions } from 'rollup';
5
-
6
- type Mapping2ROO<K extends keyof OutputOptions> = OutputOptions[K] | {
7
- js?: OutputOptions[K];
8
- dts?: OutputOptions[K];
9
- };
10
- interface ConfigGenerateContext {
11
- path: string;
12
- name: string;
13
- input: string;
14
- output: string;
15
- external: (string | RegExp)[];
16
- pkgIsModule: boolean;
17
- conditionals: string[];
18
- }
19
- type OutputControl = boolean | ((context: ConfigGenerateContext) => boolean);
20
- declare const BUILDER_TYPES: readonly ["esbuild", "swc"];
21
- interface TemplateOptions {
22
- /**
23
- * When the user configures type: module, the generated output from entry points that don't
24
- * have cts as a suffix will automatically include the CJS version.
25
- * if it is not configured, and the generated output from entry points that do not have mts
26
- * as a suffix will automatically include the ESM version.
27
- *
28
- * @default true
29
- */
30
- crossModuleConvertor?: boolean;
31
- /**
32
- * Auto-detect the builder from the installed dependencies.
33
- * If the builder is not installed, it will prompt the user to install it.
34
- * If exists multiple builders, it will fall back to the 'esbuild'.
35
- *
36
- * @default 'esbuild'
37
- */
38
- builder?: typeof BUILDER_TYPES[number] | ({
39
- type: 'esbuild';
40
- } & rollup_plugin_esbuild.Options) | ({
41
- type: 'swc';
42
- } & rollup_plugin_swc3.PluginOptions);
43
- features?: {
44
- /**
45
- * When use esbuild type builder, it will inject `supported.import-attributes` option.
46
- * When use swc type builder, it will inject `jsc.experimental.keepImportAttributes` option.
47
- *
48
- * And it will auto set the rollup output externalImportAttributes and importAttributesKey options.
49
- *
50
- * @default true
51
- */
52
- keepImportAttributes?: boolean | 'assert';
53
- };
54
- output?: {
55
- /**
56
- * @default true
57
- *
58
- * When minify is set to true, the output will with minified files.
59
- * When minify is set to 'only-minify', the output will direct output minified files.
60
- */
61
- minify?: boolean | 'only-minify';
62
- minifyOptions?: typeof BUILDER_TYPES[number] | 'terser' | ({
63
- type: 'terser';
64
- } & _rollup_plugin_terser.Options) | ({
65
- type: 'esbuild';
66
- } & Parameters<typeof rollup_plugin_esbuild.minify>[0]) | ({
67
- type: 'swc';
68
- } & Parameters<typeof rollup_plugin_swc3.minify>[0]);
69
- /**
70
- * @default 'dist'
71
- */
72
- dir?: Mapping2ROO<'dir'>;
73
- sourcemap?: Mapping2ROO<'sourcemap'>;
74
- strict?: Mapping2ROO<'strict'>;
75
- js?: OutputControl;
76
- dts?: OutputControl;
77
- };
78
- /**
79
- * Set the external dependencies of the package.
80
- */
81
- external?: (string | RegExp)[];
82
- plugins?: InputPluginOption | ((type: 'js' | 'dts', context: ConfigGenerateContext) => InputPluginOption) | {
83
- js: InputPluginOption;
84
- dts?: InputPluginOption;
85
- } | {
86
- js?: InputPluginOption;
87
- dts: InputPluginOption;
88
- };
89
- /**
90
- * https://www.npmjs.com/package/@rollup/plugin-inject#usage
91
- *
92
- * @example
93
- * ```js
94
- * {
95
- * // import { Promise } from 'es6-promise'
96
- * Promise: [ 'es6-promise', 'Promise' ],
97
- *
98
- * // import { Promise as P } from 'es6-promise'
99
- * P: [ 'es6-promise', 'Promise' ],
100
- *
101
- * // import $ from 'jquery'
102
- * $: 'jquery',
103
- *
104
- * // import * as fs from 'fs'
105
- * fs: [ 'fs', '*' ],
106
- *
107
- * // use a local module instead of a third-party one
108
- * 'Object.assign': path.resolve( 'src/helpers/object-assign.js' ),
109
- * }
110
- * ```
111
- */
112
- injects?: Record<string, string | [string, string]>;
113
- }
1
+ import { TemplateOptions } from '#~/rollup/base';
114
2
 
115
3
  declare module 'jiek' {
116
4
  interface Config {
@@ -126,6 +14,13 @@ declare module 'jiek' {
126
14
  }
127
15
 
128
16
  declare module 'jiek' {
17
+ interface ConfigExperimental {
18
+ /**
19
+ * Polyfill `imports` fields in package.json to local dependencies and exports fields.
20
+ * @default false
21
+ */
22
+ importsDowngrade?: boolean;
23
+ }
129
24
  interface Config {
130
25
  publish?: {
131
26
  /**
@@ -140,8 +35,11 @@ declare module 'jiek' {
140
35
  }
141
36
  }
142
37
 
38
+ interface ConfigExperimental {
39
+ }
143
40
  interface Config {
41
+ experimental?: ConfigExperimental;
144
42
  }
145
43
  declare const defineConfig: (config: Config) => Config;
146
44
 
147
- export { type Config, defineConfig };
45
+ export { type Config, type ConfigExperimental, defineConfig };