@hbuesing/ui-library 5.0.0-beta.17 → 5.0.0-beta.18

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 +3 -4
package/package.json CHANGED
@@ -1,11 +1,10 @@
1
1
  {
2
2
  "private": false,
3
3
  "name": "@hbuesing/ui-library",
4
- "version": "5.0.0-beta.17",
4
+ "version": "5.0.0-beta.18",
5
5
  "description": "Collection of reusable ui components for react based applications",
6
6
  "source": "src/index.ts",
7
7
  "type": "module",
8
- "types": "./dist/index.d.ts",
9
8
  "exports": {
10
9
  "./index.css": {
11
10
  "import": "./dist/index.css",
@@ -37,10 +36,10 @@
37
36
  ],
38
37
  "scripts": {
39
38
  "lint": "eslint src --max-warnings 0",
40
- "clear": "npx rimraf dist",
39
+ "clear": "rimraf dist",
41
40
  "build:dev": "NODE_ENV=dev node esbuild.js",
42
41
  "build": "NODE_ENV=production node esbuild.js",
43
- "postbuild": "npx rimraf --glob dist/components/*/**/index.css && npx rimraf dist/index.js && npm run build:types",
42
+ "postbuild": "rimraf --glob dist/components/*/**/index.css && rimraf dist/index.js && npm run build:types",
44
43
  "build:types": "tsc --emitDeclarationOnly --project tsconfig.build.json",
45
44
  "test": "vitest run",
46
45
  "test:watch": "vitest -w",