@powerlines/plugin-tsup 0.12.25 → 0.12.29

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.
@@ -1,6 +1,6 @@
1
1
  export { createTsupPlugin } from './unplugin.cjs';
2
2
  import 'esbuild';
3
- import '../index-xv9Aw-0p.cjs';
3
+ import '../index-BJTInyc2.cjs';
4
4
  import '@storm-software/tsup/types';
5
5
  import '@storm-software/build-tools/types';
6
6
  import '@storm-software/config-tools/types';
@@ -1,6 +1,6 @@
1
1
  export { createTsupPlugin } from './unplugin.js';
2
2
  import 'esbuild';
3
- import '../index-xv9Aw-0p.js';
3
+ import '../index-BJTInyc2.js';
4
4
  import '@storm-software/tsup/types';
5
5
  import '@storm-software/build-tools/types';
6
6
  import '@storm-software/config-tools/types';
@@ -1,5 +1,5 @@
1
1
  import * as esbuild from 'esbuild';
2
- import { T as TsupPluginContext } from '../index-xv9Aw-0p.cjs';
2
+ import { T as TsupPluginContext } from '../index-BJTInyc2.cjs';
3
3
  import '@storm-software/tsup/types';
4
4
  import '@storm-software/build-tools/types';
5
5
  import '@storm-software/config-tools/types';
@@ -1,5 +1,5 @@
1
1
  import * as esbuild from 'esbuild';
2
- import { T as TsupPluginContext } from '../index-xv9Aw-0p.js';
2
+ import { T as TsupPluginContext } from '../index-BJTInyc2.js';
3
3
  import '@storm-software/tsup/types';
4
4
  import '@storm-software/build-tools/types';
5
5
  import '@storm-software/config-tools/types';
@@ -220,8 +220,8 @@ type ParsedTypeScriptConfig = ts.ParsedCommandLine & {
220
220
  tsconfigFilePath: string;
221
221
  };
222
222
 
223
- declare const __VFS_PATCH__: unique symbol;
224
- declare const __VFS_REVERT__: unique symbol;
223
+ declare const __VFS_PATCH__ = "__VFS_PATCH__";
224
+ declare const __VFS_REVERT__ = "__VFS_REVERT__";
225
225
  type OutputModeType = "fs" | "virtual";
226
226
  interface VirtualFile {
227
227
  /**
@@ -630,6 +630,15 @@ interface OutputConfig {
630
630
  * @defaultValue "dist/\{projectRoot\}"
631
631
  */
632
632
  outputPath?: string;
633
+ /**
634
+ * The output directory path for the project build.
635
+ *
636
+ * @remarks
637
+ * This path is used to determine where the built files will be placed after the build process completes. This will be used in scenarios where the monorepo uses TSConfig paths to link packages together.
638
+ *
639
+ * @defaultValue "\{projectRoot\}/dist"
640
+ */
641
+ distPath?: string;
633
642
  /**
634
643
  * The format of the output files
635
644
  *
@@ -1420,5 +1429,9 @@ type TsupPluginOptions = Partial<TsupBuildConfig>;
1420
1429
  type TsupPluginUserConfig = TsupUserConfig;
1421
1430
  type TsupPluginResolvedConfig = TsupResolvedConfig;
1422
1431
  type TsupPluginContext<TResolvedConfig extends TsupPluginResolvedConfig = TsupPluginResolvedConfig> = PluginContext<TResolvedConfig>;
1432
+ declare type __ΩTsupPluginOptions = any[];
1433
+ declare type __ΩTsupPluginUserConfig = any[];
1434
+ declare type __ΩTsupPluginResolvedConfig = any[];
1435
+ declare type __ΩTsupPluginContext = any[];
1423
1436
 
1424
- export type { Plugin as P, TsupPluginContext as T, TsupPluginOptions as a, TsupPluginUserConfig as b, TsupPluginResolvedConfig as c };
1437
+ export type { Plugin as P, TsupPluginContext as T, __ΩTsupPluginOptions as _, TsupPluginOptions as a, TsupPluginUserConfig as b, TsupPluginResolvedConfig as c, __ΩTsupPluginUserConfig as d, __ΩTsupPluginResolvedConfig as e, __ΩTsupPluginContext as f };
@@ -220,8 +220,8 @@ type ParsedTypeScriptConfig = ts.ParsedCommandLine & {
220
220
  tsconfigFilePath: string;
221
221
  };
222
222
 
223
- declare const __VFS_PATCH__: unique symbol;
224
- declare const __VFS_REVERT__: unique symbol;
223
+ declare const __VFS_PATCH__ = "__VFS_PATCH__";
224
+ declare const __VFS_REVERT__ = "__VFS_REVERT__";
225
225
  type OutputModeType = "fs" | "virtual";
226
226
  interface VirtualFile {
227
227
  /**
@@ -630,6 +630,15 @@ interface OutputConfig {
630
630
  * @defaultValue "dist/\{projectRoot\}"
631
631
  */
632
632
  outputPath?: string;
633
+ /**
634
+ * The output directory path for the project build.
635
+ *
636
+ * @remarks
637
+ * This path is used to determine where the built files will be placed after the build process completes. This will be used in scenarios where the monorepo uses TSConfig paths to link packages together.
638
+ *
639
+ * @defaultValue "\{projectRoot\}/dist"
640
+ */
641
+ distPath?: string;
633
642
  /**
634
643
  * The format of the output files
635
644
  *
@@ -1420,5 +1429,9 @@ type TsupPluginOptions = Partial<TsupBuildConfig>;
1420
1429
  type TsupPluginUserConfig = TsupUserConfig;
1421
1430
  type TsupPluginResolvedConfig = TsupResolvedConfig;
1422
1431
  type TsupPluginContext<TResolvedConfig extends TsupPluginResolvedConfig = TsupPluginResolvedConfig> = PluginContext<TResolvedConfig>;
1432
+ declare type __ΩTsupPluginOptions = any[];
1433
+ declare type __ΩTsupPluginUserConfig = any[];
1434
+ declare type __ΩTsupPluginResolvedConfig = any[];
1435
+ declare type __ΩTsupPluginContext = any[];
1423
1436
 
1424
- export type { Plugin as P, TsupPluginContext as T, TsupPluginOptions as a, TsupPluginUserConfig as b, TsupPluginResolvedConfig as c };
1437
+ export type { Plugin as P, TsupPluginContext as T, __ΩTsupPluginOptions as _, TsupPluginOptions as a, TsupPluginUserConfig as b, TsupPluginResolvedConfig as c, __ΩTsupPluginUserConfig as d, __ΩTsupPluginResolvedConfig as e, __ΩTsupPluginContext as f };
package/dist/index.d.cts CHANGED
@@ -1,5 +1,5 @@
1
- import { T as TsupPluginContext, a as TsupPluginOptions, P as Plugin } from './index-xv9Aw-0p.cjs';
2
- export { c as TsupPluginResolvedConfig, b as TsupPluginUserConfig } from './index-xv9Aw-0p.cjs';
1
+ import { T as TsupPluginContext, a as TsupPluginOptions, P as Plugin } from './index-BJTInyc2.cjs';
2
+ export { c as TsupPluginResolvedConfig, b as TsupPluginUserConfig, f as __ΩTsupPluginContext, _ as __ΩTsupPluginOptions, e as __ΩTsupPluginResolvedConfig, d as __ΩTsupPluginUserConfig } from './index-BJTInyc2.cjs';
3
3
  export { createTsupPlugin } from './helpers/unplugin.cjs';
4
4
  import '@storm-software/tsup/types';
5
5
  import '@storm-software/build-tools/types';
package/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
- import { T as TsupPluginContext, a as TsupPluginOptions, P as Plugin } from './index-xv9Aw-0p.js';
2
- export { c as TsupPluginResolvedConfig, b as TsupPluginUserConfig } from './index-xv9Aw-0p.js';
1
+ import { T as TsupPluginContext, a as TsupPluginOptions, P as Plugin } from './index-BJTInyc2.js';
2
+ export { c as TsupPluginResolvedConfig, b as TsupPluginUserConfig, f as __ΩTsupPluginContext, _ as __ΩTsupPluginOptions, e as __ΩTsupPluginResolvedConfig, d as __ΩTsupPluginUserConfig } from './index-BJTInyc2.js';
3
3
  export { createTsupPlugin } from './helpers/unplugin.js';
4
4
  import '@storm-software/tsup/types';
5
5
  import '@storm-software/build-tools/types';
@@ -1,4 +1,4 @@
1
- export { T as TsupPluginContext, a as TsupPluginOptions, c as TsupPluginResolvedConfig, b as TsupPluginUserConfig } from '../index-xv9Aw-0p.cjs';
1
+ export { T as TsupPluginContext, a as TsupPluginOptions, c as TsupPluginResolvedConfig, b as TsupPluginUserConfig, f as __ΩTsupPluginContext, _ as __ΩTsupPluginOptions, e as __ΩTsupPluginResolvedConfig, d as __ΩTsupPluginUserConfig } from '../index-BJTInyc2.cjs';
2
2
  import '@storm-software/tsup/types';
3
3
  import '@storm-software/build-tools/types';
4
4
  import '@storm-software/config-tools/types';
@@ -1,4 +1,4 @@
1
- export { T as TsupPluginContext, a as TsupPluginOptions, c as TsupPluginResolvedConfig, b as TsupPluginUserConfig } from '../index-xv9Aw-0p.js';
1
+ export { T as TsupPluginContext, a as TsupPluginOptions, c as TsupPluginResolvedConfig, b as TsupPluginUserConfig, f as __ΩTsupPluginContext, _ as __ΩTsupPluginOptions, e as __ΩTsupPluginResolvedConfig, d as __ΩTsupPluginUserConfig } from '../index-BJTInyc2.js';
2
2
  import '@storm-software/tsup/types';
3
3
  import '@storm-software/build-tools/types';
4
4
  import '@storm-software/config-tools/types';
@@ -1,4 +1,4 @@
1
- export { T as TsupPluginContext, a as TsupPluginOptions, c as TsupPluginResolvedConfig, b as TsupPluginUserConfig } from '../index-xv9Aw-0p.cjs';
1
+ export { T as TsupPluginContext, a as TsupPluginOptions, c as TsupPluginResolvedConfig, b as TsupPluginUserConfig, f as __ΩTsupPluginContext, _ as __ΩTsupPluginOptions, e as __ΩTsupPluginResolvedConfig, d as __ΩTsupPluginUserConfig } from '../index-BJTInyc2.cjs';
2
2
  import '@storm-software/tsup/types';
3
3
  import '@storm-software/build-tools/types';
4
4
  import '@storm-software/config-tools/types';
@@ -1,4 +1,4 @@
1
- export { T as TsupPluginContext, a as TsupPluginOptions, c as TsupPluginResolvedConfig, b as TsupPluginUserConfig } from '../index-xv9Aw-0p.js';
1
+ export { T as TsupPluginContext, a as TsupPluginOptions, c as TsupPluginResolvedConfig, b as TsupPluginUserConfig, f as __ΩTsupPluginContext, _ as __ΩTsupPluginOptions, e as __ΩTsupPluginResolvedConfig, d as __ΩTsupPluginUserConfig } from '../index-BJTInyc2.js';
2
2
  import '@storm-software/tsup/types';
3
3
  import '@storm-software/build-tools/types';
4
4
  import '@storm-software/config-tools/types';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@powerlines/plugin-tsup",
3
- "version": "0.12.25",
3
+ "version": "0.12.29",
4
4
  "type": "module",
5
5
  "description": "A package containing a Powerlines plugin to assist in developing other Powerlines plugins.",
6
6
  "repository": {
@@ -127,18 +127,18 @@
127
127
  "files": ["dist/**/*"],
128
128
  "keywords": ["tsup", "powerlines", "storm-software", "powerlines-plugin"],
129
129
  "dependencies": {
130
- "@storm-software/tsup": "^0.2.38",
130
+ "@storm-software/tsup": "^0.2.40",
131
131
  "@stryke/path": "^0.19.2",
132
132
  "@stryke/type-checks": "^0.3.12",
133
133
  "@stryke/types": "^0.10.2",
134
134
  "defu": "^6.1.4",
135
- "powerlines": "^0.22.1"
135
+ "powerlines": "^0.23.3"
136
136
  },
137
137
  "devDependencies": {
138
- "@powerlines/nx": "^0.10.16",
139
- "@powerlines/plugin-plugin": "^0.11.24",
140
- "@types/node": "^22.19.1"
138
+ "@powerlines/nx": "^0.10.20",
139
+ "@powerlines/plugin-plugin": "^0.11.28",
140
+ "@types/node": "^24.10.1"
141
141
  },
142
142
  "publishConfig": { "access": "public" },
143
- "gitHead": "781b9a5f57b9c64bf6e659316741b7c8a429445f"
143
+ "gitHead": "6e43200541ace2946694195c092642e7ac2f3098"
144
144
  }