@powerlines/plugin-webpack 0.5.388 → 0.5.390

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.
@@ -5,7 +5,7 @@ let unplugin = require("unplugin");
5
5
 
6
6
  //#region src/helpers/unplugin.ts
7
7
  function createWebpackPlugin(context) {
8
- return (0, unplugin.createWebpackPlugin)((0, _powerlines_core_lib_unplugin.createUnplugin)(context))({});
8
+ return (0, unplugin.createWebpackPlugin)((0, _powerlines_core_lib_unplugin.createUnplugin)(context, { silenceHookLogging: true }))({});
9
9
  }
10
10
 
11
11
  //#endregion
@@ -3,7 +3,7 @@ import { createWebpackPlugin as createWebpackPlugin$1 } from "unplugin";
3
3
 
4
4
  //#region src/helpers/unplugin.ts
5
5
  function createWebpackPlugin(context) {
6
- return createWebpackPlugin$1(createUnplugin(context))({});
6
+ return createWebpackPlugin$1(createUnplugin(context, { silenceHookLogging: true }))({});
7
7
  }
8
8
 
9
9
  //#endregion
@@ -1 +1 @@
1
- {"version":3,"file":"unplugin.mjs","names":["createWebpackUnplugin"],"sources":["../../src/helpers/unplugin.ts"],"sourcesContent":["/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Powerlines\n\n This code was released as part of the Powerlines project. Powerlines\n is maintained by Storm Software under the Apache-2.0 license, and is\n free for commercial and private use. For more information, please visit\n our licensing page at https://stormsoftware.com/licenses/projects/powerlines.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/powerlines\n Documentation: https://docs.stormsoftware.com/projects/powerlines\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nimport { createUnplugin } from \"@powerlines/core/lib/unplugin\";\nimport { createWebpackPlugin as createWebpackUnplugin } from \"unplugin\";\nimport { WebpackPluginContext } from \"../types/plugin\";\n\nexport function createWebpackPlugin(context: WebpackPluginContext) {\n return createWebpackUnplugin(createUnplugin(context))({});\n}\n"],"mappings":";;;;AAsBA,SAAgB,oBAAoB,SAA+B;AACjE,QAAOA,sBAAsB,eAAe,QAAQ,CAAC,CAAC,EAAE,CAAC"}
1
+ {"version":3,"file":"unplugin.mjs","names":["createWebpackUnplugin"],"sources":["../../src/helpers/unplugin.ts"],"sourcesContent":["/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Powerlines\n\n This code was released as part of the Powerlines project. Powerlines\n is maintained by Storm Software under the Apache-2.0 license, and is\n free for commercial and private use. For more information, please visit\n our licensing page at https://stormsoftware.com/licenses/projects/powerlines.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/powerlines\n Documentation: https://docs.stormsoftware.com/projects/powerlines\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nimport { createUnplugin } from \"@powerlines/core/lib/unplugin\";\nimport { createWebpackPlugin as createWebpackUnplugin } from \"unplugin\";\nimport { WebpackPluginContext } from \"../types/plugin\";\n\nexport function createWebpackPlugin(context: WebpackPluginContext) {\n return createWebpackUnplugin(\n createUnplugin(context, { silenceHookLogging: true })\n )({});\n}\n"],"mappings":";;;;AAsBA,SAAgB,oBAAoB,SAA+B;AACjE,QAAOA,sBACL,eAAe,SAAS,EAAE,oBAAoB,MAAM,CAAC,CACtD,CAAC,EAAE,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@powerlines/plugin-webpack",
3
- "version": "0.5.388",
3
+ "version": "0.5.390",
4
4
  "private": false,
5
5
  "description": "A package containing a Powerlines plugin to build projects using Webpack.",
6
6
  "keywords": ["webpack", "powerlines", "storm-software", "powerlines-plugin"],
@@ -73,14 +73,14 @@
73
73
  "typings": "dist/index.d.mts",
74
74
  "files": ["dist/**/*"],
75
75
  "dependencies": {
76
- "@powerlines/core": "^0.13.5",
76
+ "@powerlines/core": "^0.13.7",
77
77
  "@stryke/path": "^0.27.4",
78
- "defu": "^6.1.6",
78
+ "defu": "^6.1.7",
79
79
  "unplugin": "^3.0.0"
80
80
  },
81
- "devDependencies": { "@types/node": "^25.5.2", "webpack": "^5.105.4" },
81
+ "devDependencies": { "@types/node": "^25.6.0", "webpack": "^5.106.1" },
82
82
  "peerDependencies": { "webpack": ">=5.101.0" },
83
83
  "peerDependenciesMeta": { "webpack": { "optional": false } },
84
84
  "publishConfig": { "access": "public" },
85
- "gitHead": "a3d47f71af482bded50bb826b43952ceebed406f"
85
+ "gitHead": "0930e21b75080a208112efde05ca6a1ff2595b15"
86
86
  }