@powerlines/plugin-webpack 0.5.33 → 0.5.36
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-DA53QXcL.d.cts → index-BoQUPrBw.d.cts} +6 -0
- package/dist/{index-DA53QXcL.d.ts → index-BoQUPrBw.d.ts} +6 -0
- 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
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as webpack from 'webpack';
|
|
2
|
-
import { W as WebpackPluginContext } from '../index-
|
|
2
|
+
import { W as WebpackPluginContext } from '../index-BoQUPrBw.cjs';
|
|
3
3
|
import '@stryke/env/get-env-paths';
|
|
4
4
|
import '@stryke/types/base';
|
|
5
5
|
import '@stryke/types/package-json';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as webpack from 'webpack';
|
|
2
|
-
import { W as WebpackPluginContext } from '../index-
|
|
2
|
+
import { W as WebpackPluginContext } from '../index-BoQUPrBw.js';
|
|
3
3
|
import '@stryke/env/get-env-paths';
|
|
4
4
|
import '@stryke/types/base';
|
|
5
5
|
import '@stryke/types/package-json';
|
|
@@ -1188,6 +1188,12 @@ interface UnresolvedContext<TResolvedConfig extends ResolvedConfig = ResolvedCon
|
|
|
1188
1188
|
* @returns A logger function
|
|
1189
1189
|
*/
|
|
1190
1190
|
extendLog: (name: string) => LogFn;
|
|
1191
|
+
/**
|
|
1192
|
+
* Generates a checksum representing the current context state
|
|
1193
|
+
*
|
|
1194
|
+
* @returns A promise that resolves to a string representing the checksum
|
|
1195
|
+
*/
|
|
1196
|
+
generateChecksum: () => Promise<string>;
|
|
1191
1197
|
}
|
|
1192
1198
|
type Context<TResolvedConfig extends ResolvedConfig = ResolvedConfig> = Omit<UnresolvedContext<TResolvedConfig>, "config"> & {
|
|
1193
1199
|
/**
|
|
@@ -1188,6 +1188,12 @@ interface UnresolvedContext<TResolvedConfig extends ResolvedConfig = ResolvedCon
|
|
|
1188
1188
|
* @returns A logger function
|
|
1189
1189
|
*/
|
|
1190
1190
|
extendLog: (name: string) => LogFn;
|
|
1191
|
+
/**
|
|
1192
|
+
* Generates a checksum representing the current context state
|
|
1193
|
+
*
|
|
1194
|
+
* @returns A promise that resolves to a string representing the checksum
|
|
1195
|
+
*/
|
|
1196
|
+
generateChecksum: () => Promise<string>;
|
|
1191
1197
|
}
|
|
1192
1198
|
type Context<TResolvedConfig extends ResolvedConfig = ResolvedConfig> = Omit<UnresolvedContext<TResolvedConfig>, "config"> & {
|
|
1193
1199
|
/**
|
package/dist/index.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { W as WebpackPluginContext, a as WebpackPluginOptions, P as Plugin } from './index-
|
|
2
|
-
export { b as WebpackPluginResolvedConfig, d as __ΩWebpackPluginContext, _ as __ΩWebpackPluginOptions, c as __ΩWebpackPluginResolvedConfig } from './index-
|
|
1
|
+
import { W as WebpackPluginContext, a as WebpackPluginOptions, P as Plugin } from './index-BoQUPrBw.cjs';
|
|
2
|
+
export { b as WebpackPluginResolvedConfig, d as __ΩWebpackPluginContext, _ as __ΩWebpackPluginOptions, c as __ΩWebpackPluginResolvedConfig } from './index-BoQUPrBw.cjs';
|
|
3
3
|
export { createWebpackPlugin } from './helpers/unplugin.cjs';
|
|
4
4
|
import 'webpack';
|
|
5
5
|
import '@stryke/env/get-env-paths';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { W as WebpackPluginContext, a as WebpackPluginOptions, P as Plugin } from './index-
|
|
2
|
-
export { b as WebpackPluginResolvedConfig, d as __ΩWebpackPluginContext, _ as __ΩWebpackPluginOptions, c as __ΩWebpackPluginResolvedConfig } from './index-
|
|
1
|
+
import { W as WebpackPluginContext, a as WebpackPluginOptions, P as Plugin } from './index-BoQUPrBw.js';
|
|
2
|
+
export { b as WebpackPluginResolvedConfig, d as __ΩWebpackPluginContext, _ as __ΩWebpackPluginOptions, c as __ΩWebpackPluginResolvedConfig } from './index-BoQUPrBw.js';
|
|
3
3
|
export { createWebpackPlugin } from './helpers/unplugin.js';
|
|
4
4
|
import 'webpack';
|
|
5
5
|
import '@stryke/env/get-env-paths';
|
package/dist/types/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { W as WebpackPluginContext, a as WebpackPluginOptions, b as WebpackPluginResolvedConfig, d as __ΩWebpackPluginContext, _ as __ΩWebpackPluginOptions, c as __ΩWebpackPluginResolvedConfig } from '../index-
|
|
1
|
+
export { W as WebpackPluginContext, a as WebpackPluginOptions, b as WebpackPluginResolvedConfig, d as __ΩWebpackPluginContext, _ as __ΩWebpackPluginOptions, c as __ΩWebpackPluginResolvedConfig } from '../index-BoQUPrBw.cjs';
|
|
2
2
|
import 'webpack';
|
|
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 { W as WebpackPluginContext, a as WebpackPluginOptions, b as WebpackPluginResolvedConfig, d as __ΩWebpackPluginContext, _ as __ΩWebpackPluginOptions, c as __ΩWebpackPluginResolvedConfig } from '../index-
|
|
1
|
+
export { W as WebpackPluginContext, a as WebpackPluginOptions, b as WebpackPluginResolvedConfig, d as __ΩWebpackPluginContext, _ as __ΩWebpackPluginOptions, c as __ΩWebpackPluginResolvedConfig } from '../index-BoQUPrBw.js';
|
|
2
2
|
import 'webpack';
|
|
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 { W as WebpackPluginContext, a as WebpackPluginOptions, b as WebpackPluginResolvedConfig, d as __ΩWebpackPluginContext, _ as __ΩWebpackPluginOptions, c as __ΩWebpackPluginResolvedConfig } from '../index-
|
|
1
|
+
export { W as WebpackPluginContext, a as WebpackPluginOptions, b as WebpackPluginResolvedConfig, d as __ΩWebpackPluginContext, _ as __ΩWebpackPluginOptions, c as __ΩWebpackPluginResolvedConfig } from '../index-BoQUPrBw.cjs';
|
|
2
2
|
import 'webpack';
|
|
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 { W as WebpackPluginContext, a as WebpackPluginOptions, b as WebpackPluginResolvedConfig, d as __ΩWebpackPluginContext, _ as __ΩWebpackPluginOptions, c as __ΩWebpackPluginResolvedConfig } from '../index-
|
|
1
|
+
export { W as WebpackPluginContext, a as WebpackPluginOptions, b as WebpackPluginResolvedConfig, d as __ΩWebpackPluginContext, _ as __ΩWebpackPluginOptions, c as __ΩWebpackPluginResolvedConfig } from '../index-BoQUPrBw.js';
|
|
2
2
|
import 'webpack';
|
|
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-webpack",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.36",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing a Powerlines plugin to build projects using Webpack.",
|
|
6
6
|
"repository": {
|
|
@@ -133,14 +133,14 @@
|
|
|
133
133
|
"@stryke/types": "^0.10.2",
|
|
134
134
|
"defu": "^6.1.4",
|
|
135
135
|
"jiti": "^2.6.1",
|
|
136
|
-
"powerlines": "^0.23.
|
|
136
|
+
"powerlines": "^0.23.10",
|
|
137
137
|
"webpack": "^5.103.0"
|
|
138
138
|
},
|
|
139
139
|
"devDependencies": {
|
|
140
|
-
"@powerlines/nx": "^0.10.
|
|
141
|
-
"@powerlines/plugin-plugin": "^0.11.
|
|
140
|
+
"@powerlines/nx": "^0.10.27",
|
|
141
|
+
"@powerlines/plugin-plugin": "^0.11.35",
|
|
142
142
|
"@types/node": "^24.10.1"
|
|
143
143
|
},
|
|
144
144
|
"publishConfig": { "access": "public" },
|
|
145
|
-
"gitHead": "
|
|
145
|
+
"gitHead": "5a6b8349dc29bf9e496ed5dee32c6cfb8d9bff4e"
|
|
146
146
|
}
|