strata-ui-react 0.1.9 → 0.1.10

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,24 +1,21 @@
1
1
  {
2
2
  "name": "strata-ui-react",
3
- "version": "0.1.9",
3
+ "version": "0.1.10",
4
4
  "type": "module",
5
- "main": "./dist/strata-ui-react.cjs.js",
6
- "module": "./dist/strata-ui-react.es.js",
5
+ "main": "./dist/strata-ui-react.umd.cjs",
6
+ "module": "./dist/strata-ui-react.js",
7
7
  "types": "./dist/index.d.ts",
8
8
  "exports": {
9
9
  ".": {
10
- "import": "./dist/strata-ui-react.es.js",
11
- "require": "./dist/strata-ui-react.cjs.js",
12
- "types": "./dist/index.d.ts"
10
+ "import": "./dist/strata-ui-react.js",
11
+ "require": "./dist/strata-ui-react.umd.cjs"
13
12
  },
14
- "./style.css": "./dist/style.css"
13
+ "./dist/style.css": "./dist/style.css"
15
14
  },
16
15
  "files": [
17
16
  "dist"
18
17
  ],
19
- "sideEffects": [
20
- "./dist/style.css"
21
- ],
18
+ "sideEffects": false,
22
19
  "dependencies": {
23
20
  "@base-ui/react": "^1.0.0",
24
21
  "@phosphor-icons/react": "^2.1.10",
@@ -59,8 +56,8 @@
59
56
  "build:css": "npx @tailwindcss/cli -i ./src/style.css -o ./dist/style.css --minify",
60
57
  "lint": "eslint .",
61
58
  "preview": "vite preview",
62
- "release:patch": "pnpm build && pnpm version patch && git push && pnpm publish",
63
- "release:minor": "pnpm build && pnpm version minor && git push && pnpm publish",
64
- "release:major": "pnpm build && pnpm version major && git push && pnpm publish"
59
+ "release:patch": "pnpm run build && pnpm version patch && git push && pnpm publish",
60
+ "release:minor": "pnpm run build && pnpm version minor && git push && pnpm publish",
61
+ "release:major": "pnpm run build && pnpm version major && git push && pnpm publish"
65
62
  }
66
63
  }