rollup-plugin-jsshaker 0.2.7 → 0.2.8

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/index.d.mts CHANGED
@@ -4,7 +4,6 @@ import { FilterPattern } from "unplugin-utils";
4
4
  //#region index.d.ts
5
5
  interface Options {
6
6
  preset?: "safest" | "recommended" | "smallest" | "disabled";
7
- alwaysInlineLiteral?: boolean;
8
7
  minify?: boolean;
9
8
  showWarnings?: boolean;
10
9
  include?: FilterPattern;
package/dist/index.mjs CHANGED
@@ -1884,7 +1884,6 @@ function rollupPluginJsShaker(pluginOptions = {}) {
1884
1884
  const bundle = Object.fromEntries(Object.entries(rawBundle).filter(([fileName, module$1]) => module$1.type === "chunk" && filter(fileName)));
1885
1885
  const options = {
1886
1886
  preset: pluginOptions.preset,
1887
- alwaysInlineLiteral: pluginOptions.alwaysInlineLiteral,
1888
1887
  jsx: "react",
1889
1888
  sourceMap: !!outputOptions.sourcemap,
1890
1889
  minify: "minify" in outputOptions ? !!outputOptions.minify && typeof outputOptions.minify === "object" : !!minify
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rollup-plugin-jsshaker",
3
- "version": "0.2.7",
3
+ "version": "0.2.8",
4
4
  "type": "module",
5
5
  "repository": {
6
6
  "type": "git",
@@ -24,7 +24,7 @@
24
24
  ],
25
25
  "license": "MIT",
26
26
  "dependencies": {
27
- "jsshaker": "0.2.7"
27
+ "jsshaker": "0.2.8"
28
28
  },
29
29
  "devDependencies": {
30
30
  "rollup": "^4.53.5",