@powerlines/plugin-rollup 0.7.75 → 0.7.77
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.
|
@@ -295,7 +295,7 @@ interface CommonUserConfig extends BaseConfig {
|
|
|
295
295
|
/**
|
|
296
296
|
* A list of resolvable paths to plugins used during the build process
|
|
297
297
|
*/
|
|
298
|
-
plugins?: PluginConfig<
|
|
298
|
+
plugins?: PluginConfig<any>[];
|
|
299
299
|
/**
|
|
300
300
|
* Environment-specific configurations
|
|
301
301
|
*/
|
|
@@ -6,6 +6,7 @@ import { TSConfig } from "./tsconfig.mjs";
|
|
|
6
6
|
import { PluginContext } from "./context.mjs";
|
|
7
7
|
import { LogLevelLabel } from "@storm-software/config-tools/types";
|
|
8
8
|
import { transformAsync } from "@babel/core";
|
|
9
|
+
import "c12";
|
|
9
10
|
import { PreviewOptions } from "vite";
|
|
10
11
|
import { MaybePromise } from "@stryke/types/base";
|
|
11
12
|
import { Format } from "@storm-software/build-tools/types";
|
|
@@ -296,7 +297,7 @@ interface CommonUserConfig extends BaseConfig {
|
|
|
296
297
|
/**
|
|
297
298
|
* A list of resolvable paths to plugins used during the build process
|
|
298
299
|
*/
|
|
299
|
-
plugins?: PluginConfig<
|
|
300
|
+
plugins?: PluginConfig<any>[];
|
|
300
301
|
/**
|
|
301
302
|
* Environment-specific configurations
|
|
302
303
|
*/
|
|
@@ -215,7 +215,7 @@ interface Plugin<TContext extends PluginContext<ResolvedConfig> = PluginContext<
|
|
|
215
215
|
* @param other - The other plugin to compare against.
|
|
216
216
|
* @returns `true` if the two plugins are the same, `false` otherwise.
|
|
217
217
|
*/
|
|
218
|
-
dedupe?: false | ((other: Plugin<
|
|
218
|
+
dedupe?: false | ((other: Plugin<TContext>) => boolean);
|
|
219
219
|
/**
|
|
220
220
|
* A list of pre-requisite plugins that must be loaded before this plugin can be used.
|
|
221
221
|
*/
|
|
@@ -215,7 +215,7 @@ interface Plugin<TContext extends PluginContext<ResolvedConfig> = PluginContext<
|
|
|
215
215
|
* @param other - The other plugin to compare against.
|
|
216
216
|
* @returns `true` if the two plugins are the same, `false` otherwise.
|
|
217
217
|
*/
|
|
218
|
-
dedupe?: false | ((other: Plugin<
|
|
218
|
+
dedupe?: false | ((other: Plugin<TContext>) => boolean);
|
|
219
219
|
/**
|
|
220
220
|
* A list of pre-requisite plugins that must be loaded before this plugin can be used.
|
|
221
221
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/plugin-rollup",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.77",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing a Powerlines plugin to assist in developing other Powerlines plugins.",
|
|
6
6
|
"repository": {
|
|
@@ -152,15 +152,15 @@
|
|
|
152
152
|
"@stryke/types": "^0.10.23",
|
|
153
153
|
"defu": "^6.1.4",
|
|
154
154
|
"jiti": "^2.6.1",
|
|
155
|
-
"powerlines": "^0.31.
|
|
155
|
+
"powerlines": "^0.31.5",
|
|
156
156
|
"rollup": "^4.53.3",
|
|
157
157
|
"unplugin": "3.0.0-beta.3"
|
|
158
158
|
},
|
|
159
159
|
"devDependencies": {
|
|
160
|
-
"@powerlines/nx": "^0.10.
|
|
161
|
-
"@powerlines/plugin-plugin": "^0.12.
|
|
160
|
+
"@powerlines/nx": "^0.10.68",
|
|
161
|
+
"@powerlines/plugin-plugin": "^0.12.20",
|
|
162
162
|
"@types/node": "^24.10.4"
|
|
163
163
|
},
|
|
164
164
|
"publishConfig": { "access": "public" },
|
|
165
|
-
"gitHead": "
|
|
165
|
+
"gitHead": "7ad7c79f886d8479c02ce627d0e206f57000e602"
|
|
166
166
|
}
|