@powerlines/plugin-unbuild 0.5.25 → 0.5.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.
- package/dist/{index-Bs5vDVIA.d.cts → index-Bvi0dz6Z.d.cts} +15 -3
- package/dist/{index-Bs5vDVIA.d.ts → index-Bvi0dz6Z.d.ts} +15 -3
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/types/index.d.cts +1 -1
- package/dist/types/index.d.ts +1 -1
- package/dist/types/plugin.d.cts +1 -1
- package/dist/types/plugin.d.ts +1 -1
- package/package.json +7 -7
|
@@ -220,8 +220,8 @@ type ParsedTypeScriptConfig = ts.ParsedCommandLine & {
|
|
|
220
220
|
tsconfigFilePath: string;
|
|
221
221
|
};
|
|
222
222
|
|
|
223
|
-
declare const __VFS_PATCH__
|
|
224
|
-
declare const __VFS_REVERT__
|
|
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
|
*
|
|
@@ -1419,5 +1428,8 @@ interface Plugin<in out TContext extends PluginContext<ResolvedConfig> = PluginC
|
|
|
1419
1428
|
type UnbuildPluginOptions = Partial<UnbuildBuildConfig>;
|
|
1420
1429
|
type UnbuildPluginResolvedConfig = UnbuildResolvedConfig;
|
|
1421
1430
|
type UnbuildPluginContext<TResolvedConfig extends UnbuildPluginResolvedConfig = UnbuildPluginResolvedConfig> = PluginContext<TResolvedConfig>;
|
|
1431
|
+
declare type __ΩUnbuildPluginOptions = any[];
|
|
1432
|
+
declare type __ΩUnbuildPluginResolvedConfig = any[];
|
|
1433
|
+
declare type __ΩUnbuildPluginContext = any[];
|
|
1422
1434
|
|
|
1423
|
-
export type { Plugin as P, UnbuildPluginContext as U, UnbuildPluginOptions as a, UnbuildPluginResolvedConfig as b };
|
|
1435
|
+
export type { Plugin as P, UnbuildPluginContext as U, __ΩUnbuildPluginOptions as _, UnbuildPluginOptions as a, UnbuildPluginResolvedConfig as b, __ΩUnbuildPluginResolvedConfig as c, __ΩUnbuildPluginContext as d };
|
|
@@ -220,8 +220,8 @@ type ParsedTypeScriptConfig = ts.ParsedCommandLine & {
|
|
|
220
220
|
tsconfigFilePath: string;
|
|
221
221
|
};
|
|
222
222
|
|
|
223
|
-
declare const __VFS_PATCH__
|
|
224
|
-
declare const __VFS_REVERT__
|
|
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
|
*
|
|
@@ -1419,5 +1428,8 @@ interface Plugin<in out TContext extends PluginContext<ResolvedConfig> = PluginC
|
|
|
1419
1428
|
type UnbuildPluginOptions = Partial<UnbuildBuildConfig>;
|
|
1420
1429
|
type UnbuildPluginResolvedConfig = UnbuildResolvedConfig;
|
|
1421
1430
|
type UnbuildPluginContext<TResolvedConfig extends UnbuildPluginResolvedConfig = UnbuildPluginResolvedConfig> = PluginContext<TResolvedConfig>;
|
|
1431
|
+
declare type __ΩUnbuildPluginOptions = any[];
|
|
1432
|
+
declare type __ΩUnbuildPluginResolvedConfig = any[];
|
|
1433
|
+
declare type __ΩUnbuildPluginContext = any[];
|
|
1422
1434
|
|
|
1423
|
-
export type { Plugin as P, UnbuildPluginContext as U, UnbuildPluginOptions as a, UnbuildPluginResolvedConfig as b };
|
|
1435
|
+
export type { Plugin as P, UnbuildPluginContext as U, __ΩUnbuildPluginOptions as _, UnbuildPluginOptions as a, UnbuildPluginResolvedConfig as b, __ΩUnbuildPluginResolvedConfig as c, __ΩUnbuildPluginContext as d };
|
package/dist/index.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { U as UnbuildPluginContext, a as UnbuildPluginOptions, P as Plugin } from './index-
|
|
2
|
-
export { b as UnbuildPluginResolvedConfig } from './index-
|
|
1
|
+
import { U as UnbuildPluginContext, a as UnbuildPluginOptions, P as Plugin } from './index-Bvi0dz6Z.cjs';
|
|
2
|
+
export { b as UnbuildPluginResolvedConfig, d as __ΩUnbuildPluginContext, _ as __ΩUnbuildPluginOptions, c as __ΩUnbuildPluginResolvedConfig } from './index-Bvi0dz6Z.cjs';
|
|
3
3
|
import '@storm-software/unbuild/types';
|
|
4
4
|
import '@stryke/env/get-env-paths';
|
|
5
5
|
import '@stryke/types/base';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { U as UnbuildPluginContext, a as UnbuildPluginOptions, P as Plugin } from './index-
|
|
2
|
-
export { b as UnbuildPluginResolvedConfig } from './index-
|
|
1
|
+
import { U as UnbuildPluginContext, a as UnbuildPluginOptions, P as Plugin } from './index-Bvi0dz6Z.js';
|
|
2
|
+
export { b as UnbuildPluginResolvedConfig, d as __ΩUnbuildPluginContext, _ as __ΩUnbuildPluginOptions, c as __ΩUnbuildPluginResolvedConfig } from './index-Bvi0dz6Z.js';
|
|
3
3
|
import '@storm-software/unbuild/types';
|
|
4
4
|
import '@stryke/env/get-env-paths';
|
|
5
5
|
import '@stryke/types/base';
|
package/dist/types/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { U as UnbuildPluginContext, a as UnbuildPluginOptions, b as UnbuildPluginResolvedConfig } from '../index-
|
|
1
|
+
export { U as UnbuildPluginContext, a as UnbuildPluginOptions, b as UnbuildPluginResolvedConfig, d as __ΩUnbuildPluginContext, _ as __ΩUnbuildPluginOptions, c as __ΩUnbuildPluginResolvedConfig } from '../index-Bvi0dz6Z.cjs';
|
|
2
2
|
import '@storm-software/unbuild/types';
|
|
3
3
|
import '@stryke/env/get-env-paths';
|
|
4
4
|
import '@stryke/types/base';
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { U as UnbuildPluginContext, a as UnbuildPluginOptions, b as UnbuildPluginResolvedConfig } from '../index-
|
|
1
|
+
export { U as UnbuildPluginContext, a as UnbuildPluginOptions, b as UnbuildPluginResolvedConfig, d as __ΩUnbuildPluginContext, _ as __ΩUnbuildPluginOptions, c as __ΩUnbuildPluginResolvedConfig } from '../index-Bvi0dz6Z.js';
|
|
2
2
|
import '@storm-software/unbuild/types';
|
|
3
3
|
import '@stryke/env/get-env-paths';
|
|
4
4
|
import '@stryke/types/base';
|
package/dist/types/plugin.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { U as UnbuildPluginContext, a as UnbuildPluginOptions, b as UnbuildPluginResolvedConfig } from '../index-
|
|
1
|
+
export { U as UnbuildPluginContext, a as UnbuildPluginOptions, b as UnbuildPluginResolvedConfig, d as __ΩUnbuildPluginContext, _ as __ΩUnbuildPluginOptions, c as __ΩUnbuildPluginResolvedConfig } from '../index-Bvi0dz6Z.cjs';
|
|
2
2
|
import '@storm-software/unbuild/types';
|
|
3
3
|
import '@stryke/env/get-env-paths';
|
|
4
4
|
import '@stryke/types/base';
|
package/dist/types/plugin.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { U as UnbuildPluginContext, a as UnbuildPluginOptions, b as UnbuildPluginResolvedConfig } from '../index-
|
|
1
|
+
export { U as UnbuildPluginContext, a as UnbuildPluginOptions, b as UnbuildPluginResolvedConfig, d as __ΩUnbuildPluginContext, _ as __ΩUnbuildPluginOptions, c as __ΩUnbuildPluginResolvedConfig } from '../index-Bvi0dz6Z.js';
|
|
2
2
|
import '@storm-software/unbuild/types';
|
|
3
3
|
import '@stryke/env/get-env-paths';
|
|
4
4
|
import '@stryke/types/base';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/plugin-unbuild",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.29",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing a Powerlines plugin to build projects using Unbuild.",
|
|
6
6
|
"repository": {
|
|
@@ -127,21 +127,21 @@
|
|
|
127
127
|
"files": ["dist/**/*"],
|
|
128
128
|
"keywords": ["unbuild", "powerlines", "storm-software", "powerlines-plugin"],
|
|
129
129
|
"dependencies": {
|
|
130
|
-
"@storm-software/unbuild": "^0.57.
|
|
130
|
+
"@storm-software/unbuild": "^0.57.42",
|
|
131
131
|
"@stryke/fs": "^0.32.13",
|
|
132
132
|
"@stryke/path": "^0.19.2",
|
|
133
133
|
"@stryke/type-checks": "^0.3.12",
|
|
134
134
|
"@stryke/types": "^0.10.2",
|
|
135
135
|
"defu": "^6.1.4",
|
|
136
136
|
"jiti": "^2.6.1",
|
|
137
|
-
"powerlines": "^0.
|
|
137
|
+
"powerlines": "^0.23.3",
|
|
138
138
|
"unplugin": "^2.3.10"
|
|
139
139
|
},
|
|
140
140
|
"devDependencies": {
|
|
141
|
-
"@powerlines/nx": "^0.10.
|
|
142
|
-
"@powerlines/plugin-plugin": "^0.11.
|
|
143
|
-
"@types/node": "^
|
|
141
|
+
"@powerlines/nx": "^0.10.20",
|
|
142
|
+
"@powerlines/plugin-plugin": "^0.11.28",
|
|
143
|
+
"@types/node": "^24.10.1"
|
|
144
144
|
},
|
|
145
145
|
"publishConfig": { "access": "public" },
|
|
146
|
-
"gitHead": "
|
|
146
|
+
"gitHead": "6e43200541ace2946694195c092642e7ac2f3098"
|
|
147
147
|
}
|