@powerlines/plugin-vite 0.14.40 → 0.14.41
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-agaQCb7e.d.cts → index-DTWRYS84.d.cts} +2 -2
- package/dist/{index-agaQCb7e.d.ts → index-DTWRYS84.d.ts} +2 -2
- 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 +5 -5
package/dist/helpers/index.d.cts
CHANGED
package/dist/helpers/index.d.ts
CHANGED
|
@@ -1438,7 +1438,7 @@ type PluginHooks<TContext extends PluginContext = PluginContext> = {
|
|
|
1438
1438
|
type PluginBuildPlugins<TContext extends PluginContext = PluginContext> = {
|
|
1439
1439
|
[TBuildVariant in UnpluginBuildVariant]?: BuildPlugin<TContext, TBuildVariant>;
|
|
1440
1440
|
};
|
|
1441
|
-
interface Plugin<TContext extends PluginContext<ResolvedConfig> = PluginContext<ResolvedConfig>> extends Partial<PluginHooks<TContext>>, PluginBuildPlugins<TContext> {
|
|
1441
|
+
interface Plugin<in out TContext extends PluginContext<ResolvedConfig> = PluginContext<ResolvedConfig>> extends Partial<PluginHooks<TContext>>, PluginBuildPlugins<TContext> {
|
|
1442
1442
|
/**
|
|
1443
1443
|
* The name of the plugin, for use in deduplication, error messages and logs.
|
|
1444
1444
|
*/
|
|
@@ -1469,7 +1469,7 @@ interface Plugin<TContext extends PluginContext<ResolvedConfig> = PluginContext<
|
|
|
1469
1469
|
* @param other - The other plugin to compare against.
|
|
1470
1470
|
* @returns `true` if the two plugins are the same, `false` otherwise.
|
|
1471
1471
|
*/
|
|
1472
|
-
dedupe?: false | ((other: Plugin<
|
|
1472
|
+
dedupe?: false | ((other: Plugin<any>) => boolean);
|
|
1473
1473
|
/**
|
|
1474
1474
|
* A list of pre-requisite plugins that must be loaded before this plugin can be used.
|
|
1475
1475
|
*/
|
|
@@ -1438,7 +1438,7 @@ type PluginHooks<TContext extends PluginContext = PluginContext> = {
|
|
|
1438
1438
|
type PluginBuildPlugins<TContext extends PluginContext = PluginContext> = {
|
|
1439
1439
|
[TBuildVariant in UnpluginBuildVariant]?: BuildPlugin<TContext, TBuildVariant>;
|
|
1440
1440
|
};
|
|
1441
|
-
interface Plugin<TContext extends PluginContext<ResolvedConfig> = PluginContext<ResolvedConfig>> extends Partial<PluginHooks<TContext>>, PluginBuildPlugins<TContext> {
|
|
1441
|
+
interface Plugin<in out TContext extends PluginContext<ResolvedConfig> = PluginContext<ResolvedConfig>> extends Partial<PluginHooks<TContext>>, PluginBuildPlugins<TContext> {
|
|
1442
1442
|
/**
|
|
1443
1443
|
* The name of the plugin, for use in deduplication, error messages and logs.
|
|
1444
1444
|
*/
|
|
@@ -1469,7 +1469,7 @@ interface Plugin<TContext extends PluginContext<ResolvedConfig> = PluginContext<
|
|
|
1469
1469
|
* @param other - The other plugin to compare against.
|
|
1470
1470
|
* @returns `true` if the two plugins are the same, `false` otherwise.
|
|
1471
1471
|
*/
|
|
1472
|
-
dedupe?: false | ((other: Plugin<
|
|
1472
|
+
dedupe?: false | ((other: Plugin<any>) => boolean);
|
|
1473
1473
|
/**
|
|
1474
1474
|
* A list of pre-requisite plugins that must be loaded before this plugin can be used.
|
|
1475
1475
|
*/
|
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, d as __ΩVitePluginContext, _ as __ΩVitePluginOptions, c as __ΩVitePluginResolvedConfig } from './index-
|
|
1
|
+
import { V as VitePluginContext, a as VitePluginOptions, P as Plugin } from './index-DTWRYS84.cjs';
|
|
2
|
+
export { b as VitePluginResolvedConfig, d as __ΩVitePluginContext, _ as __ΩVitePluginOptions, c as __ΩVitePluginResolvedConfig } from './index-DTWRYS84.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, d as __ΩVitePluginContext, _ as __ΩVitePluginOptions, c as __ΩVitePluginResolvedConfig } from './index-
|
|
1
|
+
import { V as VitePluginContext, a as VitePluginOptions, P as Plugin } from './index-DTWRYS84.js';
|
|
2
|
+
export { b as VitePluginResolvedConfig, d as __ΩVitePluginContext, _ as __ΩVitePluginOptions, c as __ΩVitePluginResolvedConfig } from './index-DTWRYS84.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, d as __ΩVitePluginContext, _ as __ΩVitePluginOptions, c 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-DTWRYS84.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, d as __ΩVitePluginContext, _ as __ΩVitePluginOptions, c 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-DTWRYS84.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, d as __ΩVitePluginContext, _ as __ΩVitePluginOptions, c 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-DTWRYS84.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, d as __ΩVitePluginContext, _ as __ΩVitePluginOptions, c 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-DTWRYS84.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.41",
|
|
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.8",
|
|
139
139
|
"defu": "^6.1.4",
|
|
140
140
|
"jiti": "^2.6.1",
|
|
141
|
-
"powerlines": "^0.25.
|
|
141
|
+
"powerlines": "^0.25.3"
|
|
142
142
|
},
|
|
143
143
|
"devDependencies": {
|
|
144
144
|
"vite": "^7.2.4",
|
|
145
145
|
"rolldown-vite": "^7.2.8",
|
|
146
|
-
"@powerlines/nx": "^0.10.
|
|
147
|
-
"@powerlines/plugin-plugin": "^0.11.
|
|
146
|
+
"@powerlines/nx": "^0.10.41",
|
|
147
|
+
"@powerlines/plugin-plugin": "^0.11.49",
|
|
148
148
|
"@types/node": "^24.10.1"
|
|
149
149
|
},
|
|
150
150
|
"publishConfig": { "access": "public" },
|
|
151
|
-
"gitHead": "
|
|
151
|
+
"gitHead": "2b25269712e4620b459f135da0e43bf8d2961c62"
|
|
152
152
|
}
|