@powerlines/nx 0.10.9 → 0.10.10

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 (38) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist/{chunk-3WPWHDP3.mjs → chunk-72SMJRRS.mjs} +81 -17
  3. package/dist/{chunk-R4LYPNZD.mjs → chunk-AO7OQ26C.mjs} +1 -1
  4. package/dist/{chunk-B3UMNKEM.js → chunk-CYH2EFG7.js} +2 -2
  5. package/dist/{chunk-VP7AMTR6.js → chunk-EOLGFIVC.js} +2 -2
  6. package/dist/{chunk-WUF54G5K.js → chunk-MCZLD3NY.js} +81 -17
  7. package/dist/{chunk-4S5RU53T.js → chunk-NXUUFBCT.js} +2 -2
  8. package/dist/{chunk-T52ZTHWM.mjs → chunk-ODVN2Q6Y.mjs} +1 -1
  9. package/dist/{chunk-QJEIBIEZ.js → chunk-OUNXRMS7.js} +2 -2
  10. package/dist/{chunk-AX3G6RLK.mjs → chunk-RJP4IZYY.mjs} +1 -1
  11. package/dist/{chunk-IUHTUUDE.js → chunk-UMVPNWWR.js} +2 -2
  12. package/dist/{chunk-3TWAKTYR.mjs → chunk-XO3MCKAF.mjs} +1 -1
  13. package/dist/{chunk-M647TAWI.mjs → chunk-Y4AEEMCT.mjs} +1 -1
  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/build/schema.d.ts +85 -0
  23. package/dist/src/executors/clean/executor.js +4 -4
  24. package/dist/src/executors/clean/executor.mjs +2 -2
  25. package/dist/src/executors/clean/schema.d.ts +75 -0
  26. package/dist/src/executors/docs/executor.js +4 -4
  27. package/dist/src/executors/docs/executor.mjs +2 -2
  28. package/dist/src/executors/docs/schema.d.ts +75 -0
  29. package/dist/src/executors/lint/executor.js +4 -4
  30. package/dist/src/executors/lint/executor.mjs +2 -2
  31. package/dist/src/executors/lint/schema.d.ts +75 -0
  32. package/dist/src/executors/prepare/executor.js +4 -4
  33. package/dist/src/executors/prepare/executor.mjs +2 -2
  34. package/dist/src/executors/prepare/schema.d.ts +75 -0
  35. package/dist/src/executors/prepare/schema.json +77 -0
  36. package/dist/src/generators/sync/schema.d.ts +15 -0
  37. package/dist/src/generators/sync/schema.json +19 -0
  38. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -2,6 +2,17 @@
2
2
 
3
3
  # Changelog for Powerlines - Nx
4
4
 
5
+ ## [0.10.9](https://github.com/storm-software/powerlines/releases/tag/nx%400.10.9) (11/16/2025)
6
+
7
+ ### Miscellaneous
8
+
9
+ - **powerlines:** Added debug initialization logging for the Nx plugin
10
+ ([845b5db](https://github.com/storm-software/powerlines/commit/845b5db))
11
+
12
+ ### Updated Dependencies
13
+
14
+ - Updated **powerlines** to **v0.19.5**
15
+
5
16
  ## [0.10.8](https://github.com/storm-software/powerlines/releases/tag/nx%400.10.8) (11/16/2025)
6
17
 
7
18
  ### Bug Fixes
@@ -66,6 +66,7 @@ import { loadTsConfig } from '@stryke/fs/tsconfig';
66
66
  import { writeFile as writeFile$1 } from '@stryke/fs/write-file';
67
67
  import { isDevelopmentMode, isTestMode } from '@stryke/env/environment-checks';
68
68
  import { createVitePlugin, createEsbuildPlugin, createWebpackPlugin, createRolldownPlugin, createRollupPlugin, createRspackPlugin, createUnloaderPlugin } from 'unplugin';
69
+ import { camelCase } from '@stryke/string-format/camel-case';
69
70
  import { match, tsconfigPathsToRegExp } from 'bundle-require';
70
71
  import '@stryke/fs/read-file';
71
72
  import 'magic-string';
@@ -1673,7 +1674,6 @@ var PowerlinesContext = class _PowerlinesContext {
1673
1674
  lint: config.lint,
1674
1675
  transform: config.transform,
1675
1676
  build: config.build,
1676
- override: config.override,
1677
1677
  framework: config.framework
1678
1678
  };
1679
1679
  }
@@ -2175,9 +2175,9 @@ ${result.errors.map((error) => ` [${error.severity}] ${error.message}${error.co
2175
2175
  eslint: {}
2176
2176
  },
2177
2177
  build: {
2178
- target: "esnext"
2179
- },
2180
- override: {}
2178
+ target: "esnext",
2179
+ override: {}
2180
+ }
2181
2181
  });
2182
2182
  }
2183
2183
  this.config.entry = getUniqueEntries(this.config.entry);
@@ -3587,6 +3587,43 @@ var DEFAULT_ESBUILD_CONFIG = {
3587
3587
  logLevel: "silent"
3588
3588
  };
3589
3589
  function extractESBuildConfig(context) {
3590
+ const inject = context.config.build.override.inject ?? context.config.build.inject;
3591
+ if (inject && Object.keys(inject).length > 0) {
3592
+ context.fs.writeFileSync(joinPaths(context.workspaceConfig.workspaceRoot, context.config.projectRoot, context.artifactsPath, "inject-shim.js"), Object.entries(inject).map(([key, value]) => {
3593
+ if (value) {
3594
+ if (Array.isArray(value)) {
3595
+ if (camelCase(key) !== key) {
3596
+ if (value.length === 1) {
3597
+ return `
3598
+ import ${camelCase(key)} from "${value[0]}";
3599
+ export { ${camelCase(key)} as "${key}" }`;
3600
+ } else if (value.length > 1) {
3601
+ return `
3602
+ import ${value[1] === "*" ? `* as ${camelCase(key)}` : `{ ${value[1]} as ${camelCase(key)} }`} from "${value[0]}";
3603
+ export { ${camelCase(key)} as "${key}" }`;
3604
+ }
3605
+ } else if (value.length === 1) {
3606
+ return `
3607
+ import ${key} from "${value[0]}";
3608
+ export { ${key} };`;
3609
+ } else if (value.length > 1) {
3610
+ return `
3611
+ import ${value[1] === "*" ? `* as ${key}` : `{ ${value[1]} as ${key} }`} from "${value[0]}";
3612
+ export { ${key} };`;
3613
+ }
3614
+ } else if (camelCase(key) !== key) {
3615
+ return `
3616
+ import ${camelCase(key)} from "${value[0]}";
3617
+ export { ${camelCase(key)} as "${key}" }`;
3618
+ } else {
3619
+ return `
3620
+ import ${key} from "${value}";
3621
+ export { ${key} };`;
3622
+ }
3623
+ }
3624
+ return "";
3625
+ }).join("\n"));
3626
+ }
3590
3627
  return defu3({
3591
3628
  alias: context.builtins.reduce((ret, id) => {
3592
3629
  const path = context.fs.ids[id];
@@ -3594,15 +3631,37 @@ function extractESBuildConfig(context) {
3594
3631
  ret[id] = path;
3595
3632
  }
3596
3633
  return ret;
3597
- }, {})
3598
- }, context.config.build.variant === "esbuild" ? context.config.override : {}, {
3634
+ }, context.config.build.override.alias ?? context.config.build.alias ?? {}),
3635
+ inject: inject && Object.keys(inject).length > 0 ? [
3636
+ joinPaths(context.workspaceConfig.workspaceRoot, context.config.projectRoot, context.artifactsPath, "inject-shim.js")
3637
+ ] : void 0
3638
+ }, context.config.build.variant === "esbuild" ? omit(context.config.build.override, [
3639
+ "alias",
3640
+ "inject",
3641
+ "external",
3642
+ "noExternal",
3643
+ "skipNodeModulesBundle",
3644
+ "extensions"
3645
+ ]) : {}, {
3646
+ mainFields: context.config.build.mainFields,
3647
+ conditions: context.config.build.conditions,
3648
+ define: context.config.build.define,
3649
+ resolveExtensions: context.config.build.extensions,
3650
+ packages: context.config.build.skipNodeModulesBundle ? "external" : context.config.build.variant === "esbuild" ? context.config.build.packages : void 0,
3599
3651
  format: Array.isArray(context.config.output.format) ? context.config.output.format[0] : context.config.output.format,
3600
3652
  platform: context.config.build.platform,
3601
3653
  treeShaking: Boolean(context.config.build?.treeshake) || context.config.build?.treeShaking,
3602
3654
  outdir: context.config.output.outputPath,
3603
3655
  tsconfig: context.tsconfig.tsconfigFilePath,
3604
3656
  tsconfigRaw: context.tsconfig.tsconfigJson
3605
- }, context.config.build.variant === "esbuild" ? context.config.build : {}, {
3657
+ }, context.config.build.variant === "esbuild" ? omit(context.config.build, [
3658
+ "alias",
3659
+ "inject",
3660
+ "external",
3661
+ "noExternal",
3662
+ "skipNodeModulesBundle",
3663
+ "extensions"
3664
+ ]) : {}, {
3606
3665
  minify: context.config.mode !== "development",
3607
3666
  metafile: context.config.mode === "development",
3608
3667
  sourcemap: context.config.mode === "development"
@@ -3638,13 +3697,14 @@ function extractViteConfig(context) {
3638
3697
  ret[id] = path;
3639
3698
  }
3640
3699
  return ret;
3641
- }, {})
3642
- }
3643
- }, context.config.build.variant === "vite" ? context.config.override : {}, {
3644
- external: context.config.build.external,
3645
- noExternal: context.config.build.noExternal,
3646
- skipNodeModulesBundle: context.config.build.skipNodeModulesBundle
3647
- }, {
3700
+ }, {}),
3701
+ dedupe: context.config.build.dedupe,
3702
+ mainFields: context.config.build.mainFields,
3703
+ conditions: context.config.build.conditions,
3704
+ extensions: context.config.build.extensions
3705
+ }
3706
+ }, context.config.build.variant === "vite" ? context.config.build.override : {}, {
3707
+ define: context.config.build.define,
3648
3708
  rootDir: context.config.sourceRoot,
3649
3709
  platform: context.config.build.platform,
3650
3710
  mode: context.config.mode === "development" ? "development" : "production",
@@ -3656,8 +3716,7 @@ function extractViteConfig(context) {
3656
3716
  },
3657
3717
  esbuild: extractESBuildConfig(context),
3658
3718
  logLevel: context.config.logLevel ?? void 0,
3659
- envDir: context.config.projectRoot,
3660
- noExternal: context.builtins
3719
+ envDir: context.config.projectRoot
3661
3720
  }, context.config.build.variant === "vite" ? context.config.build : {}, {
3662
3721
  build: {
3663
3722
  minify: context.config.mode !== "development",
@@ -3884,7 +3943,12 @@ var vite = createVitePlugin(createUnpluginFactory("vite", (api, plugin) => {
3884
3943
  api.context.config.mode = isDevelopmentMode(env.mode) ? "development" : isTestMode(env.mode) ? "test" : "production";
3885
3944
  const environment = await api.context.getEnvironment();
3886
3945
  const result = await api.callHook(environment, "config");
3887
- return defu3(extractViteConfig(api.context), result?.build ?? {}, config);
3946
+ return defu3(
3947
+ extractViteConfig(api.context),
3948
+ // Need to use `any` here to avoid excessive type complexity
3949
+ result?.build ?? {},
3950
+ config
3951
+ );
3888
3952
  },
3889
3953
  async configResolved(_config) {
3890
3954
  const environment = await api.context.getEnvironment();
@@ -1,4 +1,4 @@
1
- import { withExecutor } from './chunk-3WPWHDP3.mjs';
1
+ import { withExecutor } from './chunk-72SMJRRS.mjs';
2
2
  import { __name } from './chunk-O6YSETKJ.mjs';
3
3
 
4
4
  // src/executors/docs/executor.ts
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var chunkWUF54G5K_js = require('./chunk-WUF54G5K.js');
3
+ var chunkMCZLD3NY_js = require('./chunk-MCZLD3NY.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 = chunkWUF54G5K_js.withExecutor("clean", executorFn);
14
+ var executor = chunkMCZLD3NY_js.withExecutor("clean", executorFn);
15
15
  var executor_default = executor;
16
16
 
17
17
  exports.executorFn = executorFn;
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var chunkWUF54G5K_js = require('./chunk-WUF54G5K.js');
3
+ var chunkMCZLD3NY_js = require('./chunk-MCZLD3NY.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 = chunkWUF54G5K_js.withExecutor("docs", executorFn);
14
+ var executor = chunkMCZLD3NY_js.withExecutor("docs", executorFn);
15
15
  var executor_default = executor;
16
16
 
17
17
  exports.executorFn = executorFn;
@@ -68,6 +68,7 @@ var tsconfig = require('@stryke/fs/tsconfig');
68
68
  var writeFile$1 = require('@stryke/fs/write-file');
69
69
  var environmentChecks = require('@stryke/env/environment-checks');
70
70
  var unplugin = require('unplugin');
71
+ var camelCase = require('@stryke/string-format/camel-case');
71
72
  var bundleRequire = require('bundle-require');
72
73
  require('@stryke/fs/read-file');
73
74
  require('magic-string');
@@ -1703,7 +1704,6 @@ var PowerlinesContext = class _PowerlinesContext {
1703
1704
  lint: config.lint,
1704
1705
  transform: config.transform,
1705
1706
  build: config.build,
1706
- override: config.override,
1707
1707
  framework: config.framework
1708
1708
  };
1709
1709
  }
@@ -2205,9 +2205,9 @@ ${result.errors.map((error) => ` [${error.severity}] ${error.message}${error.co
2205
2205
  eslint: {}
2206
2206
  },
2207
2207
  build: {
2208
- target: "esnext"
2209
- },
2210
- override: {}
2208
+ target: "esnext",
2209
+ override: {}
2210
+ }
2211
2211
  });
2212
2212
  }
2213
2213
  this.config.entry = getUniqueEntries(this.config.entry);
@@ -3617,6 +3617,43 @@ var DEFAULT_ESBUILD_CONFIG = {
3617
3617
  logLevel: "silent"
3618
3618
  };
3619
3619
  function extractESBuildConfig(context) {
3620
+ const inject = context.config.build.override.inject ?? context.config.build.inject;
3621
+ if (inject && Object.keys(inject).length > 0) {
3622
+ context.fs.writeFileSync(joinPaths.joinPaths(context.workspaceConfig.workspaceRoot, context.config.projectRoot, context.artifactsPath, "inject-shim.js"), Object.entries(inject).map(([key, value]) => {
3623
+ if (value) {
3624
+ if (Array.isArray(value)) {
3625
+ if (camelCase.camelCase(key) !== key) {
3626
+ if (value.length === 1) {
3627
+ return `
3628
+ import ${camelCase.camelCase(key)} from "${value[0]}";
3629
+ export { ${camelCase.camelCase(key)} as "${key}" }`;
3630
+ } else if (value.length > 1) {
3631
+ return `
3632
+ import ${value[1] === "*" ? `* as ${camelCase.camelCase(key)}` : `{ ${value[1]} as ${camelCase.camelCase(key)} }`} from "${value[0]}";
3633
+ export { ${camelCase.camelCase(key)} as "${key}" }`;
3634
+ }
3635
+ } else if (value.length === 1) {
3636
+ return `
3637
+ import ${key} from "${value[0]}";
3638
+ export { ${key} };`;
3639
+ } else if (value.length > 1) {
3640
+ return `
3641
+ import ${value[1] === "*" ? `* as ${key}` : `{ ${value[1]} as ${key} }`} from "${value[0]}";
3642
+ export { ${key} };`;
3643
+ }
3644
+ } else if (camelCase.camelCase(key) !== key) {
3645
+ return `
3646
+ import ${camelCase.camelCase(key)} from "${value[0]}";
3647
+ export { ${camelCase.camelCase(key)} as "${key}" }`;
3648
+ } else {
3649
+ return `
3650
+ import ${key} from "${value}";
3651
+ export { ${key} };`;
3652
+ }
3653
+ }
3654
+ return "";
3655
+ }).join("\n"));
3656
+ }
3620
3657
  return defu3__default.default({
3621
3658
  alias: context.builtins.reduce((ret, id) => {
3622
3659
  const path = context.fs.ids[id];
@@ -3624,15 +3661,37 @@ function extractESBuildConfig(context) {
3624
3661
  ret[id] = path;
3625
3662
  }
3626
3663
  return ret;
3627
- }, {})
3628
- }, context.config.build.variant === "esbuild" ? context.config.override : {}, {
3664
+ }, context.config.build.override.alias ?? context.config.build.alias ?? {}),
3665
+ inject: inject && Object.keys(inject).length > 0 ? [
3666
+ joinPaths.joinPaths(context.workspaceConfig.workspaceRoot, context.config.projectRoot, context.artifactsPath, "inject-shim.js")
3667
+ ] : void 0
3668
+ }, context.config.build.variant === "esbuild" ? omit.omit(context.config.build.override, [
3669
+ "alias",
3670
+ "inject",
3671
+ "external",
3672
+ "noExternal",
3673
+ "skipNodeModulesBundle",
3674
+ "extensions"
3675
+ ]) : {}, {
3676
+ mainFields: context.config.build.mainFields,
3677
+ conditions: context.config.build.conditions,
3678
+ define: context.config.build.define,
3679
+ resolveExtensions: context.config.build.extensions,
3680
+ packages: context.config.build.skipNodeModulesBundle ? "external" : context.config.build.variant === "esbuild" ? context.config.build.packages : void 0,
3629
3681
  format: Array.isArray(context.config.output.format) ? context.config.output.format[0] : context.config.output.format,
3630
3682
  platform: context.config.build.platform,
3631
3683
  treeShaking: Boolean(context.config.build?.treeshake) || context.config.build?.treeShaking,
3632
3684
  outdir: context.config.output.outputPath,
3633
3685
  tsconfig: context.tsconfig.tsconfigFilePath,
3634
3686
  tsconfigRaw: context.tsconfig.tsconfigJson
3635
- }, context.config.build.variant === "esbuild" ? context.config.build : {}, {
3687
+ }, context.config.build.variant === "esbuild" ? omit.omit(context.config.build, [
3688
+ "alias",
3689
+ "inject",
3690
+ "external",
3691
+ "noExternal",
3692
+ "skipNodeModulesBundle",
3693
+ "extensions"
3694
+ ]) : {}, {
3636
3695
  minify: context.config.mode !== "development",
3637
3696
  metafile: context.config.mode === "development",
3638
3697
  sourcemap: context.config.mode === "development"
@@ -3668,13 +3727,14 @@ function extractViteConfig(context) {
3668
3727
  ret[id] = path;
3669
3728
  }
3670
3729
  return ret;
3671
- }, {})
3672
- }
3673
- }, context.config.build.variant === "vite" ? context.config.override : {}, {
3674
- external: context.config.build.external,
3675
- noExternal: context.config.build.noExternal,
3676
- skipNodeModulesBundle: context.config.build.skipNodeModulesBundle
3677
- }, {
3730
+ }, {}),
3731
+ dedupe: context.config.build.dedupe,
3732
+ mainFields: context.config.build.mainFields,
3733
+ conditions: context.config.build.conditions,
3734
+ extensions: context.config.build.extensions
3735
+ }
3736
+ }, context.config.build.variant === "vite" ? context.config.build.override : {}, {
3737
+ define: context.config.build.define,
3678
3738
  rootDir: context.config.sourceRoot,
3679
3739
  platform: context.config.build.platform,
3680
3740
  mode: context.config.mode === "development" ? "development" : "production",
@@ -3686,8 +3746,7 @@ function extractViteConfig(context) {
3686
3746
  },
3687
3747
  esbuild: extractESBuildConfig(context),
3688
3748
  logLevel: context.config.logLevel ?? void 0,
3689
- envDir: context.config.projectRoot,
3690
- noExternal: context.builtins
3749
+ envDir: context.config.projectRoot
3691
3750
  }, context.config.build.variant === "vite" ? context.config.build : {}, {
3692
3751
  build: {
3693
3752
  minify: context.config.mode !== "development",
@@ -3914,7 +3973,12 @@ var vite = unplugin.createVitePlugin(createUnpluginFactory("vite", (api, plugin)
3914
3973
  api.context.config.mode = environmentChecks.isDevelopmentMode(env.mode) ? "development" : environmentChecks.isTestMode(env.mode) ? "test" : "production";
3915
3974
  const environment = await api.context.getEnvironment();
3916
3975
  const result = await api.callHook(environment, "config");
3917
- return defu3__default.default(extractViteConfig(api.context), result?.build ?? {}, config);
3976
+ return defu3__default.default(
3977
+ extractViteConfig(api.context),
3978
+ // Need to use `any` here to avoid excessive type complexity
3979
+ result?.build ?? {},
3980
+ config
3981
+ );
3918
3982
  },
3919
3983
  async configResolved(_config) {
3920
3984
  const environment = await api.context.getEnvironment();
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var chunkWUF54G5K_js = require('./chunk-WUF54G5K.js');
3
+ var chunkMCZLD3NY_js = require('./chunk-MCZLD3NY.js');
4
4
  var chunkSHUYVCID_js = require('./chunk-SHUYVCID.js');
5
5
 
6
6
  // src/executors/lint/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 = chunkWUF54G5K_js.withExecutor("lint", executorFn);
14
+ var executor = chunkMCZLD3NY_js.withExecutor("lint", executorFn);
15
15
  var executor_default = executor;
16
16
 
17
17
  exports.executorFn = executorFn;
@@ -1,4 +1,4 @@
1
- import { withExecutor } from './chunk-3WPWHDP3.mjs';
1
+ import { withExecutor } from './chunk-72SMJRRS.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 chunkWUF54G5K_js = require('./chunk-WUF54G5K.js');
3
+ var chunkMCZLD3NY_js = require('./chunk-MCZLD3NY.js');
4
4
  var chunkSHUYVCID_js = require('./chunk-SHUYVCID.js');
5
5
  var defu = require('defu');
6
6
 
@@ -19,7 +19,7 @@ async function executorFn(context, api) {
19
19
  };
20
20
  }
21
21
  chunkSHUYVCID_js.__name(executorFn, "executorFn");
22
- var executor = chunkWUF54G5K_js.withExecutor("build", executorFn);
22
+ var executor = chunkMCZLD3NY_js.withExecutor("build", executorFn);
23
23
  var executor_default = executor;
24
24
 
25
25
  exports.executorFn = executorFn;
@@ -1,4 +1,4 @@
1
- import { withExecutor } from './chunk-3WPWHDP3.mjs';
1
+ import { withExecutor } from './chunk-72SMJRRS.mjs';
2
2
  import { __name } from './chunk-O6YSETKJ.mjs';
3
3
  import defu from 'defu';
4
4
 
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var chunkWUF54G5K_js = require('./chunk-WUF54G5K.js');
3
+ var chunkMCZLD3NY_js = require('./chunk-MCZLD3NY.js');
4
4
  var chunkSHUYVCID_js = require('./chunk-SHUYVCID.js');
5
5
  var defu = require('defu');
6
6
 
@@ -19,7 +19,7 @@ async function executorFn(context, api) {
19
19
  };
20
20
  }
21
21
  chunkSHUYVCID_js.__name(executorFn, "executorFn");
22
- var executor = chunkWUF54G5K_js.withExecutor("prepare", executorFn);
22
+ var executor = chunkMCZLD3NY_js.withExecutor("prepare", executorFn);
23
23
  var executor_default = executor;
24
24
 
25
25
  exports.executorFn = executorFn;
@@ -1,4 +1,4 @@
1
- import { withExecutor } from './chunk-3WPWHDP3.mjs';
1
+ import { withExecutor } from './chunk-72SMJRRS.mjs';
2
2
  import { __name } from './chunk-O6YSETKJ.mjs';
3
3
  import defu from 'defu';
4
4
 
@@ -1,4 +1,4 @@
1
- import { withExecutor } from './chunk-3WPWHDP3.mjs';
1
+ import { withExecutor } from './chunk-72SMJRRS.mjs';
2
2
  import { __name } from './chunk-O6YSETKJ.mjs';
3
3
 
4
4
  // src/executors/clean/executor.ts
package/dist/executors.js CHANGED
@@ -1,12 +1,12 @@
1
1
  'use strict';
2
2
 
3
3
  require('./chunk-XO62WWX4.js');
4
- var chunkB3UMNKEM_js = require('./chunk-B3UMNKEM.js');
5
- var chunkVP7AMTR6_js = require('./chunk-VP7AMTR6.js');
6
- var chunk4S5RU53T_js = require('./chunk-4S5RU53T.js');
7
- var chunkIUHTUUDE_js = require('./chunk-IUHTUUDE.js');
8
- var chunkQJEIBIEZ_js = require('./chunk-QJEIBIEZ.js');
9
- require('./chunk-WUF54G5K.js');
4
+ var chunkCYH2EFG7_js = require('./chunk-CYH2EFG7.js');
5
+ var chunkEOLGFIVC_js = require('./chunk-EOLGFIVC.js');
6
+ var chunkNXUUFBCT_js = require('./chunk-NXUUFBCT.js');
7
+ var chunkUMVPNWWR_js = require('./chunk-UMVPNWWR.js');
8
+ var chunkOUNXRMS7_js = require('./chunk-OUNXRMS7.js');
9
+ require('./chunk-MCZLD3NY.js');
10
10
  require('./chunk-UOTRU26N.js');
11
11
  require('./chunk-SHUYVCID.js');
12
12
 
@@ -14,21 +14,21 @@ require('./chunk-SHUYVCID.js');
14
14
 
15
15
  Object.defineProperty(exports, "clean", {
16
16
  enumerable: true,
17
- get: function () { return chunkB3UMNKEM_js.executor_default; }
17
+ get: function () { return chunkCYH2EFG7_js.executor_default; }
18
18
  });
19
19
  Object.defineProperty(exports, "docs", {
20
20
  enumerable: true,
21
- get: function () { return chunkVP7AMTR6_js.executor_default; }
21
+ get: function () { return chunkEOLGFIVC_js.executor_default; }
22
22
  });
23
23
  Object.defineProperty(exports, "lint", {
24
24
  enumerable: true,
25
- get: function () { return chunk4S5RU53T_js.executor_default; }
25
+ get: function () { return chunkNXUUFBCT_js.executor_default; }
26
26
  });
27
27
  Object.defineProperty(exports, "prepare", {
28
28
  enumerable: true,
29
- get: function () { return chunkIUHTUUDE_js.executor_default; }
29
+ get: function () { return chunkUMVPNWWR_js.executor_default; }
30
30
  });
31
31
  Object.defineProperty(exports, "build", {
32
32
  enumerable: true,
33
- get: function () { return chunkQJEIBIEZ_js.executor_default; }
33
+ get: function () { return chunkOUNXRMS7_js.executor_default; }
34
34
  });
@@ -1,9 +1,9 @@
1
1
  import './chunk-UV4HQO3Y.mjs';
2
- export { executor_default as clean } from './chunk-M647TAWI.mjs';
3
- export { executor_default as docs } from './chunk-R4LYPNZD.mjs';
4
- export { executor_default as lint } from './chunk-T52ZTHWM.mjs';
5
- export { executor_default as prepare } from './chunk-AX3G6RLK.mjs';
6
- export { executor_default as build } from './chunk-3TWAKTYR.mjs';
7
- import './chunk-3WPWHDP3.mjs';
2
+ export { executor_default as clean } from './chunk-Y4AEEMCT.mjs';
3
+ export { executor_default as docs } from './chunk-AO7OQ26C.mjs';
4
+ export { executor_default as lint } from './chunk-ODVN2Q6Y.mjs';
5
+ export { executor_default as prepare } from './chunk-RJP4IZYY.mjs';
6
+ export { executor_default as build } from './chunk-XO3MCKAF.mjs';
7
+ import './chunk-72SMJRRS.mjs';
8
8
  import './chunk-DVGRVHRD.mjs';
9
9
  import './chunk-O6YSETKJ.mjs';
package/dist/index.js CHANGED
@@ -1,15 +1,15 @@
1
1
  'use strict';
2
2
 
3
3
  require('./chunk-XO62WWX4.js');
4
- var chunkB3UMNKEM_js = require('./chunk-B3UMNKEM.js');
5
- var chunkVP7AMTR6_js = require('./chunk-VP7AMTR6.js');
6
- var chunk4S5RU53T_js = require('./chunk-4S5RU53T.js');
7
- var chunkIUHTUUDE_js = require('./chunk-IUHTUUDE.js');
4
+ var chunkCYH2EFG7_js = require('./chunk-CYH2EFG7.js');
5
+ var chunkEOLGFIVC_js = require('./chunk-EOLGFIVC.js');
6
+ var chunkNXUUFBCT_js = require('./chunk-NXUUFBCT.js');
7
+ var chunkUMVPNWWR_js = require('./chunk-UMVPNWWR.js');
8
8
  require('./chunk-N2YKXZ5R.js');
9
9
  var chunkWUJKJGEW_js = require('./chunk-WUJKJGEW.js');
10
10
  var chunkL5RBARDS_js = require('./chunk-L5RBARDS.js');
11
- var chunkQJEIBIEZ_js = require('./chunk-QJEIBIEZ.js');
12
- require('./chunk-WUF54G5K.js');
11
+ var chunkOUNXRMS7_js = require('./chunk-OUNXRMS7.js');
12
+ require('./chunk-MCZLD3NY.js');
13
13
  require('./chunk-UOTRU26N.js');
14
14
  require('./chunk-SHUYVCID.js');
15
15
 
@@ -17,19 +17,19 @@ require('./chunk-SHUYVCID.js');
17
17
 
18
18
  Object.defineProperty(exports, "clean", {
19
19
  enumerable: true,
20
- get: function () { return chunkB3UMNKEM_js.executor_default; }
20
+ get: function () { return chunkCYH2EFG7_js.executor_default; }
21
21
  });
22
22
  Object.defineProperty(exports, "docs", {
23
23
  enumerable: true,
24
- get: function () { return chunkVP7AMTR6_js.executor_default; }
24
+ get: function () { return chunkEOLGFIVC_js.executor_default; }
25
25
  });
26
26
  Object.defineProperty(exports, "lint", {
27
27
  enumerable: true,
28
- get: function () { return chunk4S5RU53T_js.executor_default; }
28
+ get: function () { return chunkNXUUFBCT_js.executor_default; }
29
29
  });
30
30
  Object.defineProperty(exports, "prepare", {
31
31
  enumerable: true,
32
- get: function () { return chunkIUHTUUDE_js.executor_default; }
32
+ get: function () { return chunkUMVPNWWR_js.executor_default; }
33
33
  });
34
34
  Object.defineProperty(exports, "sync", {
35
35
  enumerable: true,
@@ -45,5 +45,5 @@ Object.defineProperty(exports, "createNodesV2", {
45
45
  });
46
46
  Object.defineProperty(exports, "build", {
47
47
  enumerable: true,
48
- get: function () { return chunkQJEIBIEZ_js.executor_default; }
48
+ get: function () { return chunkOUNXRMS7_js.executor_default; }
49
49
  });
package/dist/index.mjs CHANGED
@@ -1,12 +1,12 @@
1
1
  import './chunk-UV4HQO3Y.mjs';
2
- export { executor_default as clean } from './chunk-M647TAWI.mjs';
3
- export { executor_default as docs } from './chunk-R4LYPNZD.mjs';
4
- export { executor_default as lint } from './chunk-T52ZTHWM.mjs';
5
- export { executor_default as prepare } from './chunk-AX3G6RLK.mjs';
2
+ export { executor_default as clean } from './chunk-Y4AEEMCT.mjs';
3
+ export { executor_default as docs } from './chunk-AO7OQ26C.mjs';
4
+ export { executor_default as lint } from './chunk-ODVN2Q6Y.mjs';
5
+ export { executor_default as prepare } from './chunk-RJP4IZYY.mjs';
6
6
  import './chunk-23KFTIT2.mjs';
7
7
  export { generator_default as sync, generatorFn as syncGenerator } from './chunk-326QB2VK.mjs';
8
8
  export { createNodesV2 } from './chunk-QWEMU3V4.mjs';
9
- export { executor_default as build } from './chunk-3TWAKTYR.mjs';
10
- import './chunk-3WPWHDP3.mjs';
9
+ export { executor_default as build } from './chunk-XO3MCKAF.mjs';
10
+ import './chunk-72SMJRRS.mjs';
11
11
  import './chunk-DVGRVHRD.mjs';
12
12
  import './chunk-O6YSETKJ.mjs';
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var chunkWUF54G5K_js = require('../../chunk-WUF54G5K.js');
3
+ var chunkMCZLD3NY_js = require('../../chunk-MCZLD3NY.js');
4
4
  require('../../chunk-UOTRU26N.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 chunkWUF54G5K_js.withExecutor; }
11
+ get: function () { return chunkMCZLD3NY_js.withExecutor; }
12
12
  });
@@ -1,3 +1,3 @@
1
- export { withExecutor } from '../../chunk-3WPWHDP3.mjs';
1
+ export { withExecutor } from '../../chunk-72SMJRRS.mjs';
2
2
  import '../../chunk-DVGRVHRD.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 chunkQJEIBIEZ_js = require('../../../chunk-QJEIBIEZ.js');
6
- require('../../../chunk-WUF54G5K.js');
5
+ var chunkOUNXRMS7_js = require('../../../chunk-OUNXRMS7.js');
6
+ require('../../../chunk-MCZLD3NY.js');
7
7
  require('../../../chunk-UOTRU26N.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 chunkQJEIBIEZ_js.executor_default; }
14
+ get: function () { return chunkOUNXRMS7_js.executor_default; }
15
15
  });
16
16
  Object.defineProperty(exports, "executorFn", {
17
17
  enumerable: true,
18
- get: function () { return chunkQJEIBIEZ_js.executorFn; }
18
+ get: function () { return chunkOUNXRMS7_js.executorFn; }
19
19
  });
@@ -1,4 +1,4 @@
1
- export { executor_default as default, executorFn } from '../../../chunk-3TWAKTYR.mjs';
2
- import '../../../chunk-3WPWHDP3.mjs';
1
+ export { executor_default as default, executorFn } from '../../../chunk-XO3MCKAF.mjs';
2
+ import '../../../chunk-72SMJRRS.mjs';
3
3
  import '../../../chunk-DVGRVHRD.mjs';
4
4
  import '../../../chunk-O6YSETKJ.mjs';