@everymatrix/casino-game-thumb-view 1.54.8 → 1.54.10

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.
@@ -1,4 +1,5 @@
1
1
  import { sass } from "@stencil/sass";
2
+ import { cleanPackageJsonStencil } from "../../../tools/plugins";
2
3
  export const config = {
3
4
  namespace: 'casino-game-thumb-view',
4
5
  taskQueue: 'async',
@@ -7,7 +8,7 @@ export const config = {
7
8
  extras: {
8
9
  experimentalImportInjection: true
9
10
  },
10
- plugins: [sass()],
11
+ plugins: [sass(), cleanPackageJsonStencil()],
11
12
  outputTargets: [
12
13
  {
13
14
  type: 'dist',
@@ -0,0 +1,3 @@
1
+ export * from "./vite-chunk-plugin";
2
+ export * from "./stencil-clean-deps-plugin";
3
+ export * from "./vite-clean-deps-plugin";
@@ -0,0 +1,5 @@
1
+ export declare function cleanPackageJsonStencil(): {
2
+ name: string;
3
+ apply: string;
4
+ buildEnd(): void;
5
+ };
@@ -0,0 +1,6 @@
1
+ export declare function viteChunkPlugin(): {
2
+ name: string;
3
+ config(config: any, { command }: {
4
+ command: any;
5
+ }): void;
6
+ };
@@ -0,0 +1,4 @@
1
+ export declare function cleanPackageJsonVite(widgetName: any): {
2
+ name: string;
3
+ closeBundle(): void;
4
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@everymatrix/casino-game-thumb-view",
3
- "version": "1.54.8",
3
+ "version": "1.54.10",
4
4
  "main": "./dist/index.cjs.js",
5
5
  "module": "./dist/index.js",
6
6
  "es2015": "./dist/esm/index.mjs",
@@ -23,4 +23,4 @@
23
23
  "publishConfig": {
24
24
  "access": "public"
25
25
  }
26
- }
26
+ }