@startinblox/boilerplate 4.0.0 → 4.1.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/.gitlab-ci.yml CHANGED
@@ -14,7 +14,7 @@ default:
14
14
 
15
15
  stages:
16
16
  - prepare
17
- - test
17
+ # - test
18
18
  - publish
19
19
 
20
20
  prepare:
@@ -31,22 +31,23 @@ prepare:
31
31
  paths:
32
32
  - dist
33
33
  expire_in: 1 day
34
- tags:
35
- - test
34
+ # tags:
35
+ # - test
36
36
 
37
- test:
38
- stage: test
39
- image:
40
- name: cypress/included:14.2.0
41
- entrypoint: [""]
42
- before_script:
43
- - npm ci --cache .npm --prefer-offline
44
- script:
45
- - npm run cy:run
46
- except:
47
- - tags
48
- tags:
49
- - test
37
+ # Temp: https://github.com/cypress-io/cypress/issues/31882
38
+ # test:
39
+ # stage: test
40
+ # image:
41
+ # name: cypress/included:14.2.0
42
+ # entrypoint: [""]
43
+ # before_script:
44
+ # - npm ci --cache .npm --prefer-offline
45
+ # script:
46
+ # - npm run cy:run
47
+ # except:
48
+ # - tags
49
+ # tags:
50
+ # - test
50
51
 
51
52
  publish:
52
53
  stage: publish
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@startinblox/boilerplate",
3
- "version": "4.0.0",
3
+ "version": "4.1.0",
4
4
  "description": "Startin'blox Boilerplate",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
@@ -76,15 +76,15 @@
76
76
  "postcss-scss": "^4.0.9",
77
77
  "sass": "^1.89.2",
78
78
  "unplugin-icons": "^22.1.0",
79
- "vite": "^6.3.5"
79
+ "vite": "^7.0.0"
80
80
  },
81
81
  "devDependencies": {
82
82
  "@lit/localize-tools": "^0.8.0",
83
- "@storybook/web-components-vite": "^9.0.12",
83
+ "@storybook/addon-docs": "^9.0.13",
84
+ "@storybook/web-components-vite": "^9.0.13",
84
85
  "cypress": "^14.5.0",
85
86
  "cypress-ct-lit": "^1.0.0",
86
87
  "lorem-ipsum": "^2.0.8",
87
- "storybook": "^9.0.12",
88
- "@storybook/addon-docs": "^9.0.12"
88
+ "storybook": "^9.0.13"
89
89
  }
90
90
  }
package/vite.config.ts CHANGED
@@ -6,8 +6,7 @@ export default defineConfig({
6
6
  css: {
7
7
  preprocessorOptions: {
8
8
  scss: {
9
- quietDeps: true,
10
- api: "modern-compiler",
9
+ quietDeps: true
11
10
  },
12
11
  },
13
12
  },
@@ -1 +0,0 @@
1
- /// <reference types="cypress" />