@powerlines/plugin-vite 0.14.16 → 0.14.20
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/helpers/index.d.cts +1 -1
- package/dist/helpers/index.d.ts +1 -1
- package/dist/helpers/unplugin.d.cts +1 -1
- package/dist/helpers/unplugin.d.ts +1 -1
- package/dist/{index-BMkoiiHF.d.cts → index-BAL90ULl.d.cts} +15 -3
- package/dist/{index-BMkoiiHF.d.ts → index-BAL90ULl.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
package/dist/helpers/index.d.cts
CHANGED
package/dist/helpers/index.d.ts
CHANGED
|
@@ -219,8 +219,8 @@ type ParsedTypeScriptConfig = ts.ParsedCommandLine & {
|
|
|
219
219
|
tsconfigFilePath: string;
|
|
220
220
|
};
|
|
221
221
|
|
|
222
|
-
declare const __VFS_PATCH__
|
|
223
|
-
declare const __VFS_REVERT__
|
|
222
|
+
declare const __VFS_PATCH__ = "__VFS_PATCH__";
|
|
223
|
+
declare const __VFS_REVERT__ = "__VFS_REVERT__";
|
|
224
224
|
type OutputModeType = "fs" | "virtual";
|
|
225
225
|
interface VirtualFile {
|
|
226
226
|
/**
|
|
@@ -629,6 +629,15 @@ interface OutputConfig {
|
|
|
629
629
|
* @defaultValue "dist/\{projectRoot\}"
|
|
630
630
|
*/
|
|
631
631
|
outputPath?: string;
|
|
632
|
+
/**
|
|
633
|
+
* The output directory path for the project build.
|
|
634
|
+
*
|
|
635
|
+
* @remarks
|
|
636
|
+
* 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.
|
|
637
|
+
*
|
|
638
|
+
* @defaultValue "\{projectRoot\}/dist"
|
|
639
|
+
*/
|
|
640
|
+
distPath?: string;
|
|
632
641
|
/**
|
|
633
642
|
* The format of the output files
|
|
634
643
|
*
|
|
@@ -1425,5 +1434,8 @@ type VitePluginOptions = Partial<ViteBuildConfig> & {
|
|
|
1425
1434
|
};
|
|
1426
1435
|
type VitePluginResolvedConfig = ViteResolvedConfig;
|
|
1427
1436
|
type VitePluginContext<TResolvedConfig extends VitePluginResolvedConfig = VitePluginResolvedConfig> = PluginContext<TResolvedConfig>;
|
|
1437
|
+
declare type __ΩVitePluginOptions = any[];
|
|
1438
|
+
declare type __ΩVitePluginResolvedConfig = any[];
|
|
1439
|
+
declare type __ΩVitePluginContext = any[];
|
|
1428
1440
|
|
|
1429
|
-
export type { Plugin as P, VitePluginContext as V, VitePluginOptions as a, VitePluginResolvedConfig as b };
|
|
1441
|
+
export type { Plugin as P, VitePluginContext as V, __ΩVitePluginOptions as _, VitePluginOptions as a, VitePluginResolvedConfig as b, __ΩVitePluginResolvedConfig as c, __ΩVitePluginContext as d };
|
|
@@ -219,8 +219,8 @@ type ParsedTypeScriptConfig = ts.ParsedCommandLine & {
|
|
|
219
219
|
tsconfigFilePath: string;
|
|
220
220
|
};
|
|
221
221
|
|
|
222
|
-
declare const __VFS_PATCH__
|
|
223
|
-
declare const __VFS_REVERT__
|
|
222
|
+
declare const __VFS_PATCH__ = "__VFS_PATCH__";
|
|
223
|
+
declare const __VFS_REVERT__ = "__VFS_REVERT__";
|
|
224
224
|
type OutputModeType = "fs" | "virtual";
|
|
225
225
|
interface VirtualFile {
|
|
226
226
|
/**
|
|
@@ -629,6 +629,15 @@ interface OutputConfig {
|
|
|
629
629
|
* @defaultValue "dist/\{projectRoot\}"
|
|
630
630
|
*/
|
|
631
631
|
outputPath?: string;
|
|
632
|
+
/**
|
|
633
|
+
* The output directory path for the project build.
|
|
634
|
+
*
|
|
635
|
+
* @remarks
|
|
636
|
+
* 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.
|
|
637
|
+
*
|
|
638
|
+
* @defaultValue "\{projectRoot\}/dist"
|
|
639
|
+
*/
|
|
640
|
+
distPath?: string;
|
|
632
641
|
/**
|
|
633
642
|
* The format of the output files
|
|
634
643
|
*
|
|
@@ -1425,5 +1434,8 @@ type VitePluginOptions = Partial<ViteBuildConfig> & {
|
|
|
1425
1434
|
};
|
|
1426
1435
|
type VitePluginResolvedConfig = ViteResolvedConfig;
|
|
1427
1436
|
type VitePluginContext<TResolvedConfig extends VitePluginResolvedConfig = VitePluginResolvedConfig> = PluginContext<TResolvedConfig>;
|
|
1437
|
+
declare type __ΩVitePluginOptions = any[];
|
|
1438
|
+
declare type __ΩVitePluginResolvedConfig = any[];
|
|
1439
|
+
declare type __ΩVitePluginContext = any[];
|
|
1428
1440
|
|
|
1429
|
-
export type { Plugin as P, VitePluginContext as V, VitePluginOptions as a, VitePluginResolvedConfig as b };
|
|
1441
|
+
export type { Plugin as P, VitePluginContext as V, __ΩVitePluginOptions as _, VitePluginOptions as a, VitePluginResolvedConfig as b, __ΩVitePluginResolvedConfig as c, __ΩVitePluginContext as d };
|
package/dist/index.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { V as VitePluginContext, a as VitePluginOptions, P as Plugin } from './index-
|
|
2
|
-
export { b as VitePluginResolvedConfig } from './index-
|
|
1
|
+
import { V as VitePluginContext, a as VitePluginOptions, P as Plugin } from './index-BAL90ULl.cjs';
|
|
2
|
+
export { b as VitePluginResolvedConfig, d as __ΩVitePluginContext, _ as __ΩVitePluginOptions, c as __ΩVitePluginResolvedConfig } from './index-BAL90ULl.cjs';
|
|
3
3
|
export { createVitePlugin } from './helpers/unplugin.cjs';
|
|
4
4
|
import 'vite';
|
|
5
5
|
import '@stryke/env/get-env-paths';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { V as VitePluginContext, a as VitePluginOptions, P as Plugin } from './index-
|
|
2
|
-
export { b as VitePluginResolvedConfig } from './index-
|
|
1
|
+
import { V as VitePluginContext, a as VitePluginOptions, P as Plugin } from './index-BAL90ULl.js';
|
|
2
|
+
export { b as VitePluginResolvedConfig, d as __ΩVitePluginContext, _ as __ΩVitePluginOptions, c as __ΩVitePluginResolvedConfig } from './index-BAL90ULl.js';
|
|
3
3
|
export { createVitePlugin } from './helpers/unplugin.js';
|
|
4
4
|
import 'vite';
|
|
5
5
|
import '@stryke/env/get-env-paths';
|
package/dist/types/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { V as VitePluginContext, a as VitePluginOptions, b as VitePluginResolvedConfig } from '../index-
|
|
1
|
+
export { V as VitePluginContext, a as VitePluginOptions, b as VitePluginResolvedConfig, d as __ΩVitePluginContext, _ as __ΩVitePluginOptions, c as __ΩVitePluginResolvedConfig } from '../index-BAL90ULl.cjs';
|
|
2
2
|
import 'vite';
|
|
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 { V as VitePluginContext, a as VitePluginOptions, b as VitePluginResolvedConfig } from '../index-
|
|
1
|
+
export { V as VitePluginContext, a as VitePluginOptions, b as VitePluginResolvedConfig, d as __ΩVitePluginContext, _ as __ΩVitePluginOptions, c as __ΩVitePluginResolvedConfig } from '../index-BAL90ULl.js';
|
|
2
2
|
import 'vite';
|
|
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 { V as VitePluginContext, a as VitePluginOptions, b as VitePluginResolvedConfig } from '../index-
|
|
1
|
+
export { V as VitePluginContext, a as VitePluginOptions, b as VitePluginResolvedConfig, d as __ΩVitePluginContext, _ as __ΩVitePluginOptions, c as __ΩVitePluginResolvedConfig } from '../index-BAL90ULl.cjs';
|
|
2
2
|
import 'vite';
|
|
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 { V as VitePluginContext, a as VitePluginOptions, b as VitePluginResolvedConfig } from '../index-
|
|
1
|
+
export { V as VitePluginContext, a as VitePluginOptions, b as VitePluginResolvedConfig, d as __ΩVitePluginContext, _ as __ΩVitePluginOptions, c as __ΩVitePluginResolvedConfig } from '../index-BAL90ULl.js';
|
|
2
2
|
import 'vite';
|
|
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-vite",
|
|
3
|
-
"version": "0.14.
|
|
3
|
+
"version": "0.14.20",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing a Powerlines plugin to assist in developing other Powerlines plugins.",
|
|
6
6
|
"repository": {
|
|
@@ -138,15 +138,15 @@
|
|
|
138
138
|
"@stryke/types": "^0.10.2",
|
|
139
139
|
"defu": "^6.1.4",
|
|
140
140
|
"jiti": "^2.6.1",
|
|
141
|
-
"powerlines": "^0.
|
|
141
|
+
"powerlines": "^0.23.3"
|
|
142
142
|
},
|
|
143
143
|
"devDependencies": {
|
|
144
144
|
"vite": "^7.2.2",
|
|
145
|
-
"rolldown-vite": "^7.2.
|
|
146
|
-
"@powerlines/nx": "^0.10.
|
|
147
|
-
"@powerlines/plugin-plugin": "^0.11.
|
|
148
|
-
"@types/node": "^
|
|
145
|
+
"rolldown-vite": "^7.2.6",
|
|
146
|
+
"@powerlines/nx": "^0.10.20",
|
|
147
|
+
"@powerlines/plugin-plugin": "^0.11.28",
|
|
148
|
+
"@types/node": "^24.10.1"
|
|
149
149
|
},
|
|
150
150
|
"publishConfig": { "access": "public" },
|
|
151
|
-
"gitHead": "
|
|
151
|
+
"gitHead": "6e43200541ace2946694195c092642e7ac2f3098"
|
|
152
152
|
}
|