@powerlines/nx 0.11.212 → 0.11.214

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 (30) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/dist/{chunk-YAU4VWTI.mjs → chunk-2WJBBANZ.mjs} +1 -1
  3. package/dist/{chunk-ZDAXSLBQ.js → chunk-7VQI63XV.js} +2 -2
  4. package/dist/{chunk-P7336MS6.mjs → chunk-C2QU2QP6.mjs} +1 -1
  5. package/dist/{chunk-T7X3ARNH.js → chunk-EQL4JDSC.js} +2 -2
  6. package/dist/{chunk-PIPXZTQ4.js → chunk-N3IEG3T5.js} +2 -2
  7. package/dist/{chunk-IXWGWKQW.mjs → chunk-OQLAJNR4.mjs} +1 -1
  8. package/dist/{chunk-QSORNZHH.mjs → chunk-PJK4VPGU.mjs} +1 -1
  9. package/dist/{chunk-VPKY2ES2.mjs → chunk-R6RVZI3W.mjs} +206 -178
  10. package/dist/{chunk-CZMHZKJ2.js → chunk-SCT3TD5X.js} +206 -178
  11. package/dist/{chunk-47EZNKRS.js → chunk-Z3J6TUMI.js} +2 -2
  12. package/dist/{chunk-OOHNZ6U5.mjs → chunk-ZNGUNE5Z.mjs} +1 -1
  13. package/dist/{chunk-BPBARX7E.js → chunk-ZPSEUVGR.js} +2 -2
  14. package/dist/executors.js +11 -11
  15. package/dist/executors.mjs +6 -6
  16. package/dist/index.js +11 -11
  17. package/dist/index.mjs +6 -6
  18. package/dist/src/base/base-executor.js +2 -2
  19. package/dist/src/base/base-executor.mjs +1 -1
  20. package/dist/src/executors/build/executor.js +4 -4
  21. package/dist/src/executors/build/executor.mjs +2 -2
  22. package/dist/src/executors/clean/executor.js +4 -4
  23. package/dist/src/executors/clean/executor.mjs +2 -2
  24. package/dist/src/executors/docs/executor.js +4 -4
  25. package/dist/src/executors/docs/executor.mjs +2 -2
  26. package/dist/src/executors/lint/executor.js +4 -4
  27. package/dist/src/executors/lint/executor.mjs +2 -2
  28. package/dist/src/executors/prepare/executor.js +4 -4
  29. package/dist/src/executors/prepare/executor.mjs +2 -2
  30. package/package.json +11 -11
@@ -32,6 +32,7 @@ var filePathFns = require('@stryke/path/file-path-fns');
32
32
  var isParentPath = require('@stryke/path/is-parent-path');
33
33
  var prettyBytes = require('@stryke/string-format/pretty-bytes');
34
34
  var tsMorph = require('ts-morph');
35
+ var isUndefined = require('@stryke/type-checks/is-undefined');
35
36
  var _package = require('@stryke/string-format/package');
36
37
  var superdiff = require('@donedeal0/superdiff');
37
38
  var json = require('@stryke/fs/json');
@@ -54,7 +55,6 @@ var flatCache = require('flat-cache');
54
55
  var oxcParser = require('oxc-parser');
55
56
  var undici = require('undici');
56
57
  var jiti = require('jiti');
57
- var isUndefined = require('@stryke/type-checks/is-undefined');
58
58
  var parseTypeDefinition = require('@stryke/convert/parse-type-definition');
59
59
  var isType = require('@stryke/path/is-type');
60
60
  var $ = require('@stryke/capnp');
@@ -104,7 +104,7 @@ var $__namespace = /*#__PURE__*/_interopNamespace($);
104
104
 
105
105
  // ../powerlines/package.json
106
106
  var package_default = {
107
- version: "0.38.51"};
107
+ version: "0.38.53"};
108
108
  var VirtualFileSystemHost = class extends tsMorph.InMemoryFileSystemHost {
109
109
  static {
110
110
  chunkSHUYVCID_js.__name(this, "VirtualFileSystemHost");
@@ -281,7 +281,175 @@ declare module "${moduleId}" {
281
281
  return builtinModules;
282
282
  }
283
283
  chunkSHUYVCID_js.__name(emitBuiltinTypes, "emitBuiltinTypes");
284
- var mergeResults = defu7.createDefu((obj, key, value) => {
284
+
285
+ // ../powerlines/src/types/build.ts
286
+ var UNPLUGIN_BUILDER_VARIANTS = [
287
+ "rollup",
288
+ "webpack",
289
+ "rspack",
290
+ "vite",
291
+ "esbuild",
292
+ "farm",
293
+ "unloader",
294
+ "rolldown",
295
+ "bun"
296
+ ];
297
+ var BUILDER_VARIANTS = [
298
+ ...UNPLUGIN_BUILDER_VARIANTS,
299
+ "tsup",
300
+ "tsdown",
301
+ "unbuild"
302
+ ];
303
+
304
+ // ../powerlines/src/types/commands.ts
305
+ var SUPPORTED_COMMANDS = [
306
+ "new",
307
+ "clean",
308
+ "prepare",
309
+ "lint",
310
+ "test",
311
+ "build",
312
+ "docs",
313
+ "deploy",
314
+ "finalize"
315
+ ];
316
+
317
+ // ../powerlines/src/types/plugin.ts
318
+ var PLUGIN_NON_HOOK_FIELDS = [
319
+ "name",
320
+ "api",
321
+ "enforce",
322
+ "dedupe",
323
+ "applyToEnvironment"
324
+ ];
325
+ var PLUGIN_HOOKS_FIELDS = [
326
+ ...SUPPORTED_COMMANDS,
327
+ "config",
328
+ "configEnvironment",
329
+ "configResolved",
330
+ "types",
331
+ "buildStart",
332
+ "buildEnd",
333
+ "transform",
334
+ "load",
335
+ "resolveId",
336
+ "writeBundle"
337
+ ];
338
+
339
+ // ../powerlines/src/plugin-utils/helpers.ts
340
+ function isPlugin(value) {
341
+ return isSetObject.isSetObject(value) && "name" in value && isSetString.isSetString(value.name) && (isUndefined.isUndefined(value.api) || "api" in value && isSetObject.isSetObject(value.api)) && (isUndefined.isUndefined(value.applyToEnvironment) || "applyToEnvironment" in value && isFunction.isFunction(value.applyToEnvironment)) && (isUndefined.isUndefined(value.dedupe) || "dedupe" in value && isFunction.isFunction(value.dedupe)) && PLUGIN_HOOKS_FIELDS.every((hook) => isUndefined.isUndefined(value[hook]) || hook in value && (isPluginHookFunction(value[hook]) || hook === "config" && isSetObject.isSetObject(value[hook]))) && BUILDER_VARIANTS.every((variant) => isUndefined.isUndefined(value[variant]) || variant in value && isSetObject.isSetObject(value[variant]));
342
+ }
343
+ chunkSHUYVCID_js.__name(isPlugin, "isPlugin");
344
+ function isPluginConfigObject(value) {
345
+ return isSetObject.isSetObject(value) && "plugin" in value && ((isSetString.isSetString(value.plugin) || isFunction.isFunction(value.plugin)) && "options" in value && isSetObject.isSetObject(value.options) || isPlugin(value.plugin));
346
+ }
347
+ chunkSHUYVCID_js.__name(isPluginConfigObject, "isPluginConfigObject");
348
+ function isPluginConfigTuple(value) {
349
+ return Array.isArray(value) && (value.length === 1 || value.length === 2) && ((isSetString.isSetString(value[0]) || isFunction.isFunction(value[0])) && value.length > 1 && isSetObject.isSetObject(value[1]) || isPlugin(value[0]));
350
+ }
351
+ chunkSHUYVCID_js.__name(isPluginConfigTuple, "isPluginConfigTuple");
352
+ function isPluginConfig(value) {
353
+ return isSetString.isSetString(value) || isFunction.isFunction(value) || isPlugin(value) || isPluginConfigObject(value) || isPluginConfigTuple(value) || Array.isArray(value) && value.every((item) => isPluginConfig(item));
354
+ }
355
+ chunkSHUYVCID_js.__name(isPluginConfig, "isPluginConfig");
356
+ function isPluginHookObject(value) {
357
+ return isSetObject.isSetObject(value) && "handler" in value && isFunction.isFunction(value.handler);
358
+ }
359
+ chunkSHUYVCID_js.__name(isPluginHookObject, "isPluginHookObject");
360
+ function isPluginHookFunction(value) {
361
+ return isFunction.isFunction(value) || isPluginHookObject(value);
362
+ }
363
+ chunkSHUYVCID_js.__name(isPluginHookFunction, "isPluginHookFunction");
364
+ function isPluginHook(value) {
365
+ return isPluginHookFunction(value) || isPluginHookObject(value);
366
+ }
367
+ chunkSHUYVCID_js.__name(isPluginHook, "isPluginHook");
368
+ function getHookHandler(pluginHook) {
369
+ return isFunction.isFunction(pluginHook) ? pluginHook : pluginHook.handler;
370
+ }
371
+ chunkSHUYVCID_js.__name(getHookHandler, "getHookHandler");
372
+ function isUnpluginHookKey(keys) {
373
+ return UNPLUGIN_BUILDER_VARIANTS.some((variant) => keys.startsWith(`${variant}:`));
374
+ }
375
+ chunkSHUYVCID_js.__name(isUnpluginHookKey, "isUnpluginHookKey");
376
+ function isPluginHookField(keys) {
377
+ return !isUnpluginHookKey(keys) && PLUGIN_HOOKS_FIELDS.includes(keys);
378
+ }
379
+ chunkSHUYVCID_js.__name(isPluginHookField, "isPluginHookField");
380
+ function isUnpluginHookField(field) {
381
+ return !isPluginHookField(field) && UNPLUGIN_BUILDER_VARIANTS.includes(field);
382
+ }
383
+ chunkSHUYVCID_js.__name(isUnpluginHookField, "isUnpluginHookField");
384
+ function checkDedupe(plugin, plugins) {
385
+ return plugin.dedupe === false || plugins.some((p) => p.dedupe !== false && (isFunction.isFunction(p.dedupe) && p.dedupe(plugin) || p.name === plugin.name));
386
+ }
387
+ chunkSHUYVCID_js.__name(checkDedupe, "checkDedupe");
388
+ function addPluginHook(context, plugin, pluginHook, hooksList) {
389
+ if (!checkDedupe(plugin, hooksList.map((hook) => hook.plugin).filter(Boolean))) {
390
+ const handler = /* @__PURE__ */ chunkSHUYVCID_js.__name((...args) => getHookHandler(pluginHook).apply(context, args), "handler");
391
+ if (!handler) {
392
+ return;
393
+ }
394
+ hooksList.push({
395
+ plugin,
396
+ handler
397
+ });
398
+ }
399
+ }
400
+ chunkSHUYVCID_js.__name(addPluginHook, "addPluginHook");
401
+ function findInvalidPluginConfig(config) {
402
+ if (isPluginConfig(config)) {
403
+ return null;
404
+ }
405
+ if (Array.isArray(config)) {
406
+ const invalidItems = [];
407
+ config.forEach((item) => {
408
+ const invalid = findInvalidPluginConfig(item);
409
+ if (invalid) {
410
+ invalidItems.push(...invalid.map((i) => JSON.stringify(i, null, 2)));
411
+ }
412
+ });
413
+ return invalidItems.length > 0 ? invalidItems : null;
414
+ }
415
+ return [
416
+ JSON.stringify(config, null, 2)
417
+ ];
418
+ }
419
+ chunkSHUYVCID_js.__name(findInvalidPluginConfig, "findInvalidPluginConfig");
420
+
421
+ // ../powerlines/src/plugin-utils/merge.ts
422
+ defu7.createDefu((obj, key, value) => {
423
+ if (isPluginHook(obj[key]) && isPluginHook(value)) {
424
+ obj[key] = {
425
+ ...obj[key],
426
+ ...value,
427
+ handler: /* @__PURE__ */ chunkSHUYVCID_js.__name(async (...params) => {
428
+ const [resultA, resultB] = await Promise.all([
429
+ // eslint-disable-next-line ts/no-unsafe-call
430
+ getHookHandler(obj[key])(...params),
431
+ // eslint-disable-next-line ts/no-unsafe-call
432
+ getHookHandler(value)(...params)
433
+ ]);
434
+ return resultB && resultA ? defu7__default.default(resultA, resultB) : resultA || resultB;
435
+ }, "handler")
436
+ };
437
+ return true;
438
+ }
439
+ return false;
440
+ });
441
+ var mergeConfig = defu7.createDefu((obj, key, value) => {
442
+ if (isString.isString(obj[key]) && isString.isString(value)) {
443
+ if (isSetString.isSetString(value)) {
444
+ obj[key] = value;
445
+ }
446
+ return true;
447
+ }
448
+ return false;
449
+ });
450
+
451
+ // ../powerlines/src/internal/helpers/hooks.ts
452
+ var mergeResultObjects = defu7.createDefu((obj, key, value) => {
285
453
  if (isString.isString(obj[key]) && isString.isString(value)) {
286
454
  obj[key] = `${obj[key] || ""}
287
455
  ${value || ""}`.trim();
@@ -289,6 +457,34 @@ ${value || ""}`.trim();
289
457
  }
290
458
  return false;
291
459
  });
460
+ function mergeResults(currentResult, previousResults) {
461
+ if (isString.isString(currentResult)) {
462
+ previousResults = [
463
+ `${isString.isString(previousResults[0]) ? previousResults[0] || "" : ""}
464
+ ${currentResult || ""}`.trim()
465
+ ];
466
+ } else if (isObject.isObject(currentResult)) {
467
+ previousResults = [
468
+ mergeResultObjects(currentResult, previousResults[0] ?? {})
469
+ ];
470
+ }
471
+ return previousResults;
472
+ }
473
+ chunkSHUYVCID_js.__name(mergeResults, "mergeResults");
474
+ function mergeConfigs(currentResult, previousResults) {
475
+ if (isString.isString(currentResult)) {
476
+ previousResults = [
477
+ `${isString.isString(previousResults[0]) ? previousResults[0] || "" : ""}
478
+ ${currentResult || ""}`.trim()
479
+ ];
480
+ } else if (isObject.isObject(currentResult)) {
481
+ previousResults = [
482
+ mergeConfig(currentResult, previousResults[0] ?? {})
483
+ ];
484
+ }
485
+ return previousResults;
486
+ }
487
+ chunkSHUYVCID_js.__name(mergeConfigs, "mergeConfigs");
292
488
  async function callHook(context, key, options, ...args) {
293
489
  const hooks = context.selectHooks(key, options);
294
490
  if (hooks.length > 0) {
@@ -329,19 +525,14 @@ async function callHook(context, key, options, ...args) {
329
525
  ...sequenceArgs
330
526
  ]));
331
527
  if (result) {
332
- if (options?.result === "last") {
528
+ if (options.result === "last") {
333
529
  results = [
334
530
  result
335
531
  ];
336
- } else if (isString.isString(result)) {
337
- results = [
338
- `${isString.isString(results[0]) ? results[0] || "" : ""}
339
- ${result || ""}`.trim()
340
- ];
341
- } else if (isObject.isObject(result)) {
342
- results = [
343
- mergeResults(result, results[0] ?? {})
344
- ];
532
+ } else if (options.result === "merge" && options.merge) {
533
+ results = options.merge(result, results);
534
+ } else {
535
+ results = mergeResults(result, results);
345
536
  }
346
537
  }
347
538
  }
@@ -690,170 +881,6 @@ function createResolver(options) {
690
881
  return baseResolver;
691
882
  }
692
883
  chunkSHUYVCID_js.__name(createResolver, "createResolver");
693
-
694
- // ../powerlines/src/types/build.ts
695
- var UNPLUGIN_BUILDER_VARIANTS = [
696
- "rollup",
697
- "webpack",
698
- "rspack",
699
- "vite",
700
- "esbuild",
701
- "farm",
702
- "unloader",
703
- "rolldown",
704
- "bun"
705
- ];
706
- var BUILDER_VARIANTS = [
707
- ...UNPLUGIN_BUILDER_VARIANTS,
708
- "tsup",
709
- "tsdown",
710
- "unbuild"
711
- ];
712
-
713
- // ../powerlines/src/types/commands.ts
714
- var SUPPORTED_COMMANDS = [
715
- "new",
716
- "clean",
717
- "prepare",
718
- "lint",
719
- "test",
720
- "build",
721
- "docs",
722
- "deploy",
723
- "finalize"
724
- ];
725
-
726
- // ../powerlines/src/types/plugin.ts
727
- var PLUGIN_NON_HOOK_FIELDS = [
728
- "name",
729
- "api",
730
- "enforce",
731
- "dedupe",
732
- "applyToEnvironment"
733
- ];
734
- var PLUGIN_HOOKS_FIELDS = [
735
- ...SUPPORTED_COMMANDS,
736
- "config",
737
- "configEnvironment",
738
- "configResolved",
739
- "types",
740
- "buildStart",
741
- "buildEnd",
742
- "transform",
743
- "load",
744
- "resolveId",
745
- "writeBundle"
746
- ];
747
-
748
- // ../powerlines/src/plugin-utils/helpers.ts
749
- function isPlugin(value) {
750
- return isSetObject.isSetObject(value) && "name" in value && isSetString.isSetString(value.name) && (isUndefined.isUndefined(value.api) || "api" in value && isSetObject.isSetObject(value.api)) && (isUndefined.isUndefined(value.applyToEnvironment) || "applyToEnvironment" in value && isFunction.isFunction(value.applyToEnvironment)) && (isUndefined.isUndefined(value.dedupe) || "dedupe" in value && isFunction.isFunction(value.dedupe)) && PLUGIN_HOOKS_FIELDS.every((hook) => isUndefined.isUndefined(value[hook]) || hook in value && (isPluginHookFunction(value[hook]) || hook === "config" && isSetObject.isSetObject(value[hook]))) && BUILDER_VARIANTS.every((variant) => isUndefined.isUndefined(value[variant]) || variant in value && isSetObject.isSetObject(value[variant]));
751
- }
752
- chunkSHUYVCID_js.__name(isPlugin, "isPlugin");
753
- function isPluginConfigObject(value) {
754
- return isSetObject.isSetObject(value) && "plugin" in value && ((isSetString.isSetString(value.plugin) || isFunction.isFunction(value.plugin)) && "options" in value && isSetObject.isSetObject(value.options) || isPlugin(value.plugin));
755
- }
756
- chunkSHUYVCID_js.__name(isPluginConfigObject, "isPluginConfigObject");
757
- function isPluginConfigTuple(value) {
758
- return Array.isArray(value) && (value.length === 1 || value.length === 2) && ((isSetString.isSetString(value[0]) || isFunction.isFunction(value[0])) && value.length > 1 && isSetObject.isSetObject(value[1]) || isPlugin(value[0]));
759
- }
760
- chunkSHUYVCID_js.__name(isPluginConfigTuple, "isPluginConfigTuple");
761
- function isPluginConfig(value) {
762
- return isSetString.isSetString(value) || isFunction.isFunction(value) || isPlugin(value) || isPluginConfigObject(value) || isPluginConfigTuple(value) || Array.isArray(value) && value.every((item) => isPluginConfig(item));
763
- }
764
- chunkSHUYVCID_js.__name(isPluginConfig, "isPluginConfig");
765
- function isPluginHookObject(value) {
766
- return isSetObject.isSetObject(value) && "handler" in value && isFunction.isFunction(value.handler);
767
- }
768
- chunkSHUYVCID_js.__name(isPluginHookObject, "isPluginHookObject");
769
- function isPluginHookFunction(value) {
770
- return isFunction.isFunction(value) || isPluginHookObject(value);
771
- }
772
- chunkSHUYVCID_js.__name(isPluginHookFunction, "isPluginHookFunction");
773
- function isPluginHook(value) {
774
- return isPluginHookFunction(value) || isPluginHookObject(value);
775
- }
776
- chunkSHUYVCID_js.__name(isPluginHook, "isPluginHook");
777
- function getHookHandler(pluginHook) {
778
- return isFunction.isFunction(pluginHook) ? pluginHook : pluginHook.handler;
779
- }
780
- chunkSHUYVCID_js.__name(getHookHandler, "getHookHandler");
781
- function isUnpluginHookKey(keys) {
782
- return UNPLUGIN_BUILDER_VARIANTS.some((variant) => keys.startsWith(`${variant}:`));
783
- }
784
- chunkSHUYVCID_js.__name(isUnpluginHookKey, "isUnpluginHookKey");
785
- function isPluginHookField(keys) {
786
- return !isUnpluginHookKey(keys) && PLUGIN_HOOKS_FIELDS.includes(keys);
787
- }
788
- chunkSHUYVCID_js.__name(isPluginHookField, "isPluginHookField");
789
- function isUnpluginHookField(field) {
790
- return !isPluginHookField(field) && UNPLUGIN_BUILDER_VARIANTS.includes(field);
791
- }
792
- chunkSHUYVCID_js.__name(isUnpluginHookField, "isUnpluginHookField");
793
- function checkDedupe(plugin, plugins) {
794
- return plugin.dedupe === false || plugins.some((p) => p.dedupe !== false && (isFunction.isFunction(p.dedupe) && p.dedupe(plugin) || p.name === plugin.name));
795
- }
796
- chunkSHUYVCID_js.__name(checkDedupe, "checkDedupe");
797
- function addPluginHook(context, plugin, pluginHook, hooksList) {
798
- if (!checkDedupe(plugin, hooksList.map((hook) => hook.plugin).filter(Boolean))) {
799
- const handler = /* @__PURE__ */ chunkSHUYVCID_js.__name((...args) => getHookHandler(pluginHook).apply(context, args), "handler");
800
- if (!handler) {
801
- return;
802
- }
803
- hooksList.push({
804
- plugin,
805
- handler
806
- });
807
- }
808
- }
809
- chunkSHUYVCID_js.__name(addPluginHook, "addPluginHook");
810
- function findInvalidPluginConfig(config) {
811
- if (isPluginConfig(config)) {
812
- return null;
813
- }
814
- if (Array.isArray(config)) {
815
- const invalidItems = [];
816
- config.forEach((item) => {
817
- const invalid = findInvalidPluginConfig(item);
818
- if (invalid) {
819
- invalidItems.push(...invalid.map((i) => JSON.stringify(i, null, 2)));
820
- }
821
- });
822
- return invalidItems.length > 0 ? invalidItems : null;
823
- }
824
- return [
825
- JSON.stringify(config, null, 2)
826
- ];
827
- }
828
- chunkSHUYVCID_js.__name(findInvalidPluginConfig, "findInvalidPluginConfig");
829
- defu7.createDefu((obj, key, value) => {
830
- if (isPluginHook(obj[key]) && isPluginHook(value)) {
831
- obj[key] = {
832
- ...obj[key],
833
- ...value,
834
- handler: /* @__PURE__ */ chunkSHUYVCID_js.__name(async (...params) => {
835
- const [resultA, resultB] = await Promise.all([
836
- // eslint-disable-next-line ts/no-unsafe-call
837
- getHookHandler(obj[key])(...params),
838
- // eslint-disable-next-line ts/no-unsafe-call
839
- getHookHandler(value)(...params)
840
- ]);
841
- return resultB && resultA ? defu7__default.default(resultA, resultB) : resultA || resultB;
842
- }, "handler")
843
- };
844
- return true;
845
- }
846
- return false;
847
- });
848
- var mergeConfig = defu7.createDefu((obj, key, value) => {
849
- if (isString.isString(obj[key]) && isString.isString(value)) {
850
- if (isSetString.isSetString(value)) {
851
- obj[key] = value;
852
- }
853
- return true;
854
- }
855
- return false;
856
- });
857
884
  function replacePathTokens(context, path) {
858
885
  if (!path) {
859
886
  return path;
@@ -4395,7 +4422,8 @@ var PowerlinesAPI = class _PowerlinesAPI {
4395
4422
  const pluginConfig = await api.callHook("config", {
4396
4423
  environment: await api.context.getEnvironment(),
4397
4424
  sequential: true,
4398
- result: "merge"
4425
+ result: "merge",
4426
+ merge: mergeConfigs
4399
4427
  });
4400
4428
  await api.context.withUserConfig(pluginConfig, {
4401
4429
  isHighPriority: false
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var chunkCZMHZKJ2_js = require('./chunk-CZMHZKJ2.js');
3
+ var chunkSCT3TD5X_js = require('./chunk-SCT3TD5X.js');
4
4
  var chunkSHUYVCID_js = require('./chunk-SHUYVCID.js');
5
5
 
6
6
  // src/executors/clean/executor.ts
@@ -11,7 +11,7 @@ async function executorFn(context, api) {
11
11
  };
12
12
  }
13
13
  chunkSHUYVCID_js.__name(executorFn, "executorFn");
14
- var executor = chunkCZMHZKJ2_js.withExecutor("clean", executorFn);
14
+ var executor = chunkSCT3TD5X_js.withExecutor("clean", executorFn);
15
15
  var executor_default = executor;
16
16
 
17
17
  exports.executorFn = executorFn;
@@ -1,4 +1,4 @@
1
- import { withExecutor } from './chunk-VPKY2ES2.mjs';
1
+ import { withExecutor } from './chunk-R6RVZI3W.mjs';
2
2
  import { __name } from './chunk-O6YSETKJ.mjs';
3
3
 
4
4
  // src/executors/lint/executor.ts
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var chunkCZMHZKJ2_js = require('./chunk-CZMHZKJ2.js');
3
+ var chunkSCT3TD5X_js = require('./chunk-SCT3TD5X.js');
4
4
  var chunkSHUYVCID_js = require('./chunk-SHUYVCID.js');
5
5
 
6
6
  // src/executors/docs/executor.ts
@@ -11,7 +11,7 @@ async function executorFn(context, api) {
11
11
  };
12
12
  }
13
13
  chunkSHUYVCID_js.__name(executorFn, "executorFn");
14
- var executor = chunkCZMHZKJ2_js.withExecutor("docs", executorFn);
14
+ var executor = chunkSCT3TD5X_js.withExecutor("docs", executorFn);
15
15
  var executor_default = executor;
16
16
 
17
17
  exports.executorFn = executorFn;
package/dist/executors.js CHANGED
@@ -1,12 +1,12 @@
1
1
  'use strict';
2
2
 
3
3
  require('./chunk-XO62WWX4.js');
4
- var chunkZDAXSLBQ_js = require('./chunk-ZDAXSLBQ.js');
5
- var chunkT7X3ARNH_js = require('./chunk-T7X3ARNH.js');
6
- var chunkPIPXZTQ4_js = require('./chunk-PIPXZTQ4.js');
7
- var chunk47EZNKRS_js = require('./chunk-47EZNKRS.js');
8
- var chunkBPBARX7E_js = require('./chunk-BPBARX7E.js');
9
- require('./chunk-CZMHZKJ2.js');
4
+ var chunk7VQI63XV_js = require('./chunk-7VQI63XV.js');
5
+ var chunkEQL4JDSC_js = require('./chunk-EQL4JDSC.js');
6
+ var chunkN3IEG3T5_js = require('./chunk-N3IEG3T5.js');
7
+ var chunkZ3J6TUMI_js = require('./chunk-Z3J6TUMI.js');
8
+ var chunkZPSEUVGR_js = require('./chunk-ZPSEUVGR.js');
9
+ require('./chunk-SCT3TD5X.js');
10
10
  require('./chunk-NU3VTAH5.js');
11
11
  require('./chunk-SHUYVCID.js');
12
12
 
@@ -14,21 +14,21 @@ require('./chunk-SHUYVCID.js');
14
14
 
15
15
  Object.defineProperty(exports, "lint", {
16
16
  enumerable: true,
17
- get: function () { return chunkZDAXSLBQ_js.executor_default; }
17
+ get: function () { return chunk7VQI63XV_js.executor_default; }
18
18
  });
19
19
  Object.defineProperty(exports, "prepare", {
20
20
  enumerable: true,
21
- get: function () { return chunkT7X3ARNH_js.executor_default; }
21
+ get: function () { return chunkEQL4JDSC_js.executor_default; }
22
22
  });
23
23
  Object.defineProperty(exports, "build", {
24
24
  enumerable: true,
25
- get: function () { return chunkPIPXZTQ4_js.executor_default; }
25
+ get: function () { return chunkN3IEG3T5_js.executor_default; }
26
26
  });
27
27
  Object.defineProperty(exports, "clean", {
28
28
  enumerable: true,
29
- get: function () { return chunk47EZNKRS_js.executor_default; }
29
+ get: function () { return chunkZ3J6TUMI_js.executor_default; }
30
30
  });
31
31
  Object.defineProperty(exports, "docs", {
32
32
  enumerable: true,
33
- get: function () { return chunkBPBARX7E_js.executor_default; }
33
+ get: function () { return chunkZPSEUVGR_js.executor_default; }
34
34
  });
@@ -1,9 +1,9 @@
1
1
  import './chunk-UV4HQO3Y.mjs';
2
- export { executor_default as lint } from './chunk-OOHNZ6U5.mjs';
3
- export { executor_default as prepare } from './chunk-QSORNZHH.mjs';
4
- export { executor_default as build } from './chunk-P7336MS6.mjs';
5
- export { executor_default as clean } from './chunk-YAU4VWTI.mjs';
6
- export { executor_default as docs } from './chunk-IXWGWKQW.mjs';
7
- import './chunk-VPKY2ES2.mjs';
2
+ export { executor_default as lint } from './chunk-ZNGUNE5Z.mjs';
3
+ export { executor_default as prepare } from './chunk-PJK4VPGU.mjs';
4
+ export { executor_default as build } from './chunk-C2QU2QP6.mjs';
5
+ export { executor_default as clean } from './chunk-2WJBBANZ.mjs';
6
+ export { executor_default as docs } from './chunk-OQLAJNR4.mjs';
7
+ import './chunk-R6RVZI3W.mjs';
8
8
  import './chunk-AGZ4P3AS.mjs';
9
9
  import './chunk-O6YSETKJ.mjs';
package/dist/index.js CHANGED
@@ -2,14 +2,14 @@
2
2
 
3
3
  var chunkWJP3FWAH_js = require('./chunk-WJP3FWAH.js');
4
4
  require('./chunk-XO62WWX4.js');
5
- var chunkZDAXSLBQ_js = require('./chunk-ZDAXSLBQ.js');
6
- var chunkT7X3ARNH_js = require('./chunk-T7X3ARNH.js');
7
- var chunkPIPXZTQ4_js = require('./chunk-PIPXZTQ4.js');
8
- var chunk47EZNKRS_js = require('./chunk-47EZNKRS.js');
9
- var chunkBPBARX7E_js = require('./chunk-BPBARX7E.js');
5
+ var chunk7VQI63XV_js = require('./chunk-7VQI63XV.js');
6
+ var chunkEQL4JDSC_js = require('./chunk-EQL4JDSC.js');
7
+ var chunkN3IEG3T5_js = require('./chunk-N3IEG3T5.js');
8
+ var chunkZ3J6TUMI_js = require('./chunk-Z3J6TUMI.js');
9
+ var chunkZPSEUVGR_js = require('./chunk-ZPSEUVGR.js');
10
10
  require('./chunk-N2YKXZ5R.js');
11
11
  var chunkWUJKJGEW_js = require('./chunk-WUJKJGEW.js');
12
- require('./chunk-CZMHZKJ2.js');
12
+ require('./chunk-SCT3TD5X.js');
13
13
  require('./chunk-TWOXCXFE.js');
14
14
  require('./chunk-NU3VTAH5.js');
15
15
  require('./chunk-IQVSZEQ6.js');
@@ -23,23 +23,23 @@ Object.defineProperty(exports, "createNodesV2", {
23
23
  });
24
24
  Object.defineProperty(exports, "lint", {
25
25
  enumerable: true,
26
- get: function () { return chunkZDAXSLBQ_js.executor_default; }
26
+ get: function () { return chunk7VQI63XV_js.executor_default; }
27
27
  });
28
28
  Object.defineProperty(exports, "prepare", {
29
29
  enumerable: true,
30
- get: function () { return chunkT7X3ARNH_js.executor_default; }
30
+ get: function () { return chunkEQL4JDSC_js.executor_default; }
31
31
  });
32
32
  Object.defineProperty(exports, "build", {
33
33
  enumerable: true,
34
- get: function () { return chunkPIPXZTQ4_js.executor_default; }
34
+ get: function () { return chunkN3IEG3T5_js.executor_default; }
35
35
  });
36
36
  Object.defineProperty(exports, "clean", {
37
37
  enumerable: true,
38
- get: function () { return chunk47EZNKRS_js.executor_default; }
38
+ get: function () { return chunkZ3J6TUMI_js.executor_default; }
39
39
  });
40
40
  Object.defineProperty(exports, "docs", {
41
41
  enumerable: true,
42
- get: function () { return chunkBPBARX7E_js.executor_default; }
42
+ get: function () { return chunkZPSEUVGR_js.executor_default; }
43
43
  });
44
44
  Object.defineProperty(exports, "sync", {
45
45
  enumerable: true,
package/dist/index.mjs CHANGED
@@ -1,13 +1,13 @@
1
1
  export { createNodesV2 } from './chunk-ELBUYWVF.mjs';
2
2
  import './chunk-UV4HQO3Y.mjs';
3
- export { executor_default as lint } from './chunk-OOHNZ6U5.mjs';
4
- export { executor_default as prepare } from './chunk-QSORNZHH.mjs';
5
- export { executor_default as build } from './chunk-P7336MS6.mjs';
6
- export { executor_default as clean } from './chunk-YAU4VWTI.mjs';
7
- export { executor_default as docs } from './chunk-IXWGWKQW.mjs';
3
+ export { executor_default as lint } from './chunk-ZNGUNE5Z.mjs';
4
+ export { executor_default as prepare } from './chunk-PJK4VPGU.mjs';
5
+ export { executor_default as build } from './chunk-C2QU2QP6.mjs';
6
+ export { executor_default as clean } from './chunk-2WJBBANZ.mjs';
7
+ export { executor_default as docs } from './chunk-OQLAJNR4.mjs';
8
8
  import './chunk-23KFTIT2.mjs';
9
9
  export { generator_default as sync, generatorFn as syncGenerator } from './chunk-326QB2VK.mjs';
10
- import './chunk-VPKY2ES2.mjs';
10
+ import './chunk-R6RVZI3W.mjs';
11
11
  import './chunk-ZYOL33SX.mjs';
12
12
  import './chunk-AGZ4P3AS.mjs';
13
13
  import './chunk-IC47MFKB.mjs';
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var chunkCZMHZKJ2_js = require('../../chunk-CZMHZKJ2.js');
3
+ var chunkSCT3TD5X_js = require('../../chunk-SCT3TD5X.js');
4
4
  require('../../chunk-NU3VTAH5.js');
5
5
  require('../../chunk-SHUYVCID.js');
6
6
 
@@ -8,5 +8,5 @@ require('../../chunk-SHUYVCID.js');
8
8
 
9
9
  Object.defineProperty(exports, "withExecutor", {
10
10
  enumerable: true,
11
- get: function () { return chunkCZMHZKJ2_js.withExecutor; }
11
+ get: function () { return chunkSCT3TD5X_js.withExecutor; }
12
12
  });
@@ -1,3 +1,3 @@
1
- export { withExecutor } from '../../chunk-VPKY2ES2.mjs';
1
+ export { withExecutor } from '../../chunk-R6RVZI3W.mjs';
2
2
  import '../../chunk-AGZ4P3AS.mjs';
3
3
  import '../../chunk-O6YSETKJ.mjs';
@@ -2,8 +2,8 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- var chunkPIPXZTQ4_js = require('../../../chunk-PIPXZTQ4.js');
6
- require('../../../chunk-CZMHZKJ2.js');
5
+ var chunkN3IEG3T5_js = require('../../../chunk-N3IEG3T5.js');
6
+ require('../../../chunk-SCT3TD5X.js');
7
7
  require('../../../chunk-NU3VTAH5.js');
8
8
  require('../../../chunk-SHUYVCID.js');
9
9
 
@@ -11,9 +11,9 @@ require('../../../chunk-SHUYVCID.js');
11
11
 
12
12
  Object.defineProperty(exports, "default", {
13
13
  enumerable: true,
14
- get: function () { return chunkPIPXZTQ4_js.executor_default; }
14
+ get: function () { return chunkN3IEG3T5_js.executor_default; }
15
15
  });
16
16
  Object.defineProperty(exports, "executorFn", {
17
17
  enumerable: true,
18
- get: function () { return chunkPIPXZTQ4_js.executorFn; }
18
+ get: function () { return chunkN3IEG3T5_js.executorFn; }
19
19
  });
@@ -1,4 +1,4 @@
1
- export { executor_default as default, executorFn } from '../../../chunk-P7336MS6.mjs';
2
- import '../../../chunk-VPKY2ES2.mjs';
1
+ export { executor_default as default, executorFn } from '../../../chunk-C2QU2QP6.mjs';
2
+ import '../../../chunk-R6RVZI3W.mjs';
3
3
  import '../../../chunk-AGZ4P3AS.mjs';
4
4
  import '../../../chunk-O6YSETKJ.mjs';