@revolugo/elements 5.2.8 → 5.2.9-beta.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
@@ -1,23 +1,16 @@
1
1
  {
2
2
  "name": "@revolugo/elements",
3
- "author": "Revolugo",
4
- "description": "Revolugo Elements UI library",
5
- "version": "5.2.8",
3
+ "version": "5.2.9-beta.0",
6
4
  "private": false,
5
+ "description": "Revolugo Elements UI library",
6
+ "author": "Revolugo",
7
+ "main": "./dist/index.min.js",
8
+ "typings": "./src/types/index.d.ts",
7
9
  "files": [
8
10
  ".keep",
9
11
  "dist",
10
12
  "storybook-static"
11
13
  ],
12
- "main": "./dist/index.min.js",
13
- "typings": "./src/types/index.d.ts",
14
- "docker-registry": "eu.gcr.io/revolugo/elements",
15
- "engines": {
16
- "node": ">=20.9.0 <21"
17
- },
18
- "volta": {
19
- "extends": "../../../package.json"
20
- },
21
14
  "dependencies": {
22
15
  "http-server": "14.1.1"
23
16
  },
@@ -43,9 +36,16 @@
43
36
  "ts-loader": "9.4.2",
44
37
  "vue": "2.7.16",
45
38
  "webpack": "5.77.0",
46
- "@revolugo/elements-core": "5.2.8",
47
- "@revolugo/elements-documentation": "5.2.8"
39
+ "@revolugo/elements-core": "5.2.9",
40
+ "@revolugo/elements-documentation": "5.2.9"
48
41
  },
42
+ "engines": {
43
+ "node": ">=20.9.0 <21"
44
+ },
45
+ "volta": {
46
+ "extends": "../../../package.json"
47
+ },
48
+ "docker-registry": "eu.gcr.io/revolugo/elements",
49
49
  "nx": {
50
50
  "targets": {
51
51
  "build": {
@@ -170,16 +170,16 @@
170
170
  "scripts": {
171
171
  "build": "webpack -c ./webpack.config.js --mode=production",
172
172
  "build-dev": "webpack -c ./webpack.config.js --mode=development",
173
- "chromatic-publish": "pnpm chromatic --build-script-name \"storybook:build\" --project-token=$CHROMATIC_PROJECT_TOKEN --exit-zero-on-changes",
174
173
  "build-wc": "./bin/copy-core-assets.sh",
174
+ "chromatic-publish": "pnpm chromatic --build-script-name \"storybook:build\" --project-token=$CHROMATIC_PROJECT_TOKEN --exit-zero-on-changes",
175
+ "clean-dist": "rm -rf dist",
175
176
  "demo": "webpack serve -c ./webpack.config.js --mode=development --open",
176
- "serve-lib:async": "webpack serve -c ./webpack.config.js --mode=development &",
177
177
  "serve-lib": "webpack serve -c ./webpack.config.js --mode=development",
178
- "storybook:render": "node --loader ts-node/esm ./.storybook/render.mts",
179
- "storybook:dev": "NODE_OPTIONS=--openssl-legacy-provider LOCAL_DIST=true start-storybook -p 6006",
178
+ "serve-lib:async": "webpack serve -c ./webpack.config.js --mode=development &",
180
179
  "storybook:build": "LOCAL_DIST=false build-storybook && cp -r ./src/health ./storybook-static/",
181
- "storybook:serve": "http-server ./storybook-static -p 6006",
182
- "watch": "webpack -c ./webpack.config.js --mode=development --watch &",
183
- "clean-dist": "rm -rf dist"
180
+ "storybook:dev": "NODE_OPTIONS=--openssl-legacy-provider LOCAL_DIST=true start-storybook -p 6006",
181
+ "storybook:render": "node --loader ts-node/esm ./.storybook/render.mts",
182
+ "storybook:serve": "http-server ./storybook-static -p 6006 | grep -v 'GET /health'",
183
+ "watch": "webpack -c ./webpack.config.js --mode=development --watch &"
184
184
  }
185
185
  }