@gomusdev/web-components 1.39.4 → 1.40.0

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/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "name": "Giantmonkey GmbH"
5
5
  },
6
6
  "license": "MIT",
7
- "version": "1.39.4",
7
+ "version": "1.40.0",
8
8
  "type": "module",
9
9
  "main": "./dist-js/gomus-webcomponents.iife.js",
10
10
  "module": "./dist-js/gomus-webcomponents.iife.js",
@@ -26,9 +26,13 @@
26
26
  "build:standard-components": "pnpm vite -c vite.standard-components.config.ts build; cp dist-js/standard-components.js ../../../gomus-shop/src/assets/javascript",
27
27
  "open-test": "vite build && vite --open src/test.html",
28
28
  "=== E 2 E ===": "",
29
- "e2e": "npx playwright test",
30
- "e2e:ui": "npx playwright test --ui",
31
- "e2e:headed": "npx playwright test --headed ",
29
+ "e2e:static": "vite build && npx playwright test --config=playwright-static.config.ts",
30
+ "e2e:static:no-build": "npx playwright test --config=playwright-static.config.ts",
31
+ "e2e:static:ui": "npx playwright test --config=playwright-static.config.ts --ui",
32
+ "----------------": "-",
33
+ "e2e:storybook": "npx playwright test --config=playwright-storybook.config.ts",
34
+ "e2e:storybook:ui": "npx playwright test --ui --config=playwright-storybook.config.ts",
35
+ "e2e:storybook:headed": "npx playwright test --headed --config=playwright-storybook.config.ts",
32
36
  "=== S T O R Y B O O K ===": "",
33
37
  "chromatic": "npx chromatic --project-token=chpt_36bb239517e3c45 --allow-console-errors",
34
38
  "storybook": "storybook dev",
@@ -1,8 +0,0 @@
1
- import { ConfigOptions } from './defaultConfig.ts';
2
- declare class Config {
3
- private options;
4
- get config(): any;
5
- defineConfig(options: ConfigOptions): this;
6
- }
7
- export declare const go: Config;
8
- export {};