@revolugo/elements 5.2.11-beta.0 → 5.2.11

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,16 +1,23 @@
1
1
  {
2
2
  "name": "@revolugo/elements",
3
- "version": "5.2.11-beta.0",
4
- "private": false,
5
- "description": "Revolugo Elements UI library",
6
3
  "author": "Revolugo",
7
- "main": "./dist/index.min.js",
8
- "typings": "./src/types/index.d.ts",
4
+ "description": "Revolugo Elements UI library",
5
+ "version": "5.2.11",
6
+ "private": false,
9
7
  "files": [
10
8
  ".keep",
11
9
  "dist",
12
10
  "storybook-static"
13
11
  ],
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
+ },
14
21
  "dependencies": {
15
22
  "http-server": "14.1.1"
16
23
  },
@@ -39,13 +46,6 @@
39
46
  "@revolugo/elements-core": "5.2.11",
40
47
  "@revolugo/elements-documentation": "5.2.11"
41
48
  },
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
- "build-wc": "./bin/copy-core-assets.sh",
174
173
  "chromatic-publish": "pnpm chromatic --build-script-name \"storybook:build\" --project-token=$CHROMATIC_PROJECT_TOKEN --exit-zero-on-changes",
175
- "clean-dist": "rm -rf dist",
174
+ "build-wc": "./bin/copy-core-assets.sh",
176
175
  "demo": "webpack serve -c ./webpack.config.js --mode=development --open",
177
- "serve-lib": "webpack serve -c ./webpack.config.js --mode=development",
178
176
  "serve-lib:async": "webpack serve -c ./webpack.config.js --mode=development &",
179
- "storybook:build": "LOCAL_DIST=false build-storybook && cp -r ./src/health ./storybook-static/",
180
- "storybook:dev": "NODE_OPTIONS=--openssl-legacy-provider LOCAL_DIST=true start-storybook -p 6006",
177
+ "serve-lib": "webpack serve -c ./webpack.config.js --mode=development",
181
178
  "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 &"
179
+ "storybook:dev": "NODE_OPTIONS=--openssl-legacy-provider LOCAL_DIST=true start-storybook -p 6006",
180
+ "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"
184
184
  }
185
185
  }