@enonic/ui 0.23.0 → 0.23.1

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.
Files changed (1) hide show
  1. package/package.json +28 -40
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@enonic/ui",
3
- "version": "0.23.0",
3
+ "version": "0.23.1",
4
4
  "description": "Enonic UI Component Library",
5
5
  "author": "Enonic",
6
6
  "license": "MIT",
@@ -47,35 +47,6 @@
47
47
  "./base.css": "./dist/styles/base.css",
48
48
  "./utilities.css": "./dist/styles/utilities.css"
49
49
  },
50
- "scripts": {
51
- "build": "pnpm clean && pnpm build:ui",
52
- "build:ui": "pnpm --color /^build:ui:.*$/",
53
- "build:ui:lib": "vite build --config vite.config.ts",
54
- "build:ui:css": "vite build --config vite.config.css.ts",
55
- "build:storybook": "storybook build",
56
- "build:all": "pnpm build && pnpm build:storybook",
57
- "dev": "storybook dev -p 6006",
58
- "clean": "rm -rf dist coverage reports storybook-static",
59
- "check": "pnpm typecheck && pnpm lint && pnpm format:check",
60
- "typecheck": "pnpm typecheck:app && pnpm typecheck:node",
61
- "typecheck:app": "tsc --noEmit --project tsconfig.app.json",
62
- "typecheck:node": "tsc --noEmit --project tsconfig.node.json",
63
- "lint": "biome check . && eslint --cache '**/*.{ts,tsx}' --max-warnings 0 --concurrency auto",
64
- "lint:fix": "biome check --write --unsafe . && eslint --cache 'src/**/*.{ts,tsx}' --fix --concurrency auto",
65
- "lint:ci": "biome check . && eslint --no-cache 'src/**/*.{ts,tsx}' --max-warnings 0 --concurrency auto",
66
- "format": "biome format --write .",
67
- "format:check": "biome format .",
68
- "test": "exit 0",
69
- "test:ci": "exit 0",
70
- "prepack": "echo 'Packaging...'",
71
- "prepublishOnly": "pnpm check && pnpm build && pnpm size",
72
- "release": "npm publish --access public",
73
- "release:dry": "pnpm publish --dry-run --no-git-checks",
74
- "analyze": "pnpm build && open dist/stats.html",
75
- "size": "size-limit",
76
- "preview": "pnpm dlx serve . -p 4000",
77
- "prepare": "husky"
78
- },
79
50
  "dependencies": {
80
51
  "class-variance-authority": "~0.7.1",
81
52
  "clsx": "~2.1.1",
@@ -138,13 +109,6 @@
138
109
  "vite-plugin-dts": "~4.5.4",
139
110
  "vite-plugin-environment": "~1.1.3"
140
111
  },
141
- "pnpm": {
142
- "ignoredBuiltDependencies": [
143
- "@tailwindcss/oxide",
144
- "esbuild",
145
- "unrs-resolver"
146
- ]
147
- },
148
112
  "browserslist": {
149
113
  "production": [
150
114
  ">0.2%",
@@ -162,7 +126,6 @@
162
126
  "pnpm": ">=10.24.0",
163
127
  "npm": ">=11.6.2"
164
128
  },
165
- "packageManager": "pnpm@10.24.0",
166
129
  "lint-staged": {
167
130
  "*.{ts,tsx}": [
168
131
  "biome check --write --unsafe --no-errors-on-unmatched",
@@ -189,5 +152,30 @@
189
152
  "path": "dist/styles/preset.css",
190
153
  "limit": "2 KB"
191
154
  }
192
- ]
193
- }
155
+ ],
156
+ "scripts": {
157
+ "build": "pnpm clean && pnpm build:ui",
158
+ "build:ui": "pnpm --color /^build:ui:.*$/",
159
+ "build:ui:lib": "vite build --config vite.config.ts",
160
+ "build:ui:css": "vite build --config vite.config.css.ts",
161
+ "build:storybook": "storybook build",
162
+ "build:all": "pnpm build && pnpm build:storybook",
163
+ "dev": "storybook dev -p 6006",
164
+ "clean": "rm -rf dist coverage reports storybook-static",
165
+ "check": "pnpm typecheck && pnpm lint && pnpm format:check",
166
+ "typecheck": "pnpm typecheck:app && pnpm typecheck:node",
167
+ "typecheck:app": "tsc --noEmit --project tsconfig.app.json",
168
+ "typecheck:node": "tsc --noEmit --project tsconfig.node.json",
169
+ "lint": "biome check . && eslint --cache '**/*.{ts,tsx}' --max-warnings 0 --concurrency auto",
170
+ "lint:fix": "biome check --write --unsafe . && eslint --cache 'src/**/*.{ts,tsx}' --fix --concurrency auto",
171
+ "lint:ci": "biome check . && eslint --no-cache 'src/**/*.{ts,tsx}' --max-warnings 0 --concurrency auto",
172
+ "format": "biome format --write .",
173
+ "format:check": "biome format .",
174
+ "test": "exit 0",
175
+ "test:ci": "exit 0",
176
+ "release:dry": "pnpm publish --dry-run --no-git-checks",
177
+ "analyze": "pnpm build && open dist/stats.html",
178
+ "size": "size-limit",
179
+ "preview": "pnpm dlx serve . -p 4000"
180
+ }
181
+ }