@lynx-js/template-webpack-plugin-canary 0.6.12-canary-20250522-141a3df9 → 0.7.0-canary-20250522-a55bc0c2

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/CHANGELOG.md CHANGED
@@ -1,6 +1,10 @@
1
1
  # @lynx-js/template-webpack-plugin
2
2
 
3
- ## 0.6.12-canary-20250522054141-141a3df968dd5a3de5ccf45ad3cab85f68635073
3
+ ## 0.7.0-canary-20250522100628-a55bc0c2bd739b7d7fbf137aa024b8b5c4b2786b
4
+
5
+ ### Minor Changes
6
+
7
+ - Remove the unused `encodeBinary` option of `LynxEncodePlugin`. ([#880](https://github.com/lynx-family/lynx-stack/pull/880))
4
8
 
5
9
  ### Patch Changes
6
10
 
@@ -7,8 +7,7 @@ import type { CSS } from './index.js';
7
7
  * @public
8
8
  */
9
9
  export interface LynxEncodePluginOptions {
10
- encodeBinary?: string;
11
- inlineScripts?: boolean;
10
+ inlineScripts?: boolean | undefined;
12
11
  }
13
12
  /**
14
13
  * LynxEncodePlugin
@@ -71,7 +71,6 @@ export class LynxEncodePlugin {
71
71
  */
72
72
  static defaultOptions = Object
73
73
  .freeze({
74
- encodeBinary: 'napi',
75
74
  inlineScripts: true,
76
75
  });
77
76
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lynx-js/template-webpack-plugin-canary",
3
- "version": "0.6.12-canary-20250522-141a3df9",
3
+ "version": "0.7.0-canary-20250522-a55bc0c2",
4
4
  "description": "Simplifies creation of Lynx template files to serve your webpack bundles",
5
5
  "keywords": [
6
6
  "webpack",
@@ -44,8 +44,8 @@
44
44
  "@types/css-tree": "^2.3.10",
45
45
  "@types/object.groupby": "^1.0.4",
46
46
  "webpack": "^5.99.9",
47
- "@lynx-js/vitest-setup": "0.0.0",
48
- "@lynx-js/test-tools": "0.0.0"
47
+ "@lynx-js/test-tools": "0.0.0",
48
+ "@lynx-js/vitest-setup": "0.0.0"
49
49
  },
50
50
  "engines": {
51
51
  "node": ">=18"