@umituz/atomic-next 2.0.2 → 2.0.3
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/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2 -7
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -7
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umituz/atomic-next",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.3",
|
|
4
4
|
"description": "A comprehensive atomic design system for Next.js with Server/Client Component separation, built-in optimizations, and semantic HTML support.",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"LICENSE"
|
|
20
20
|
],
|
|
21
21
|
"scripts": {
|
|
22
|
-
"build": "tsup",
|
|
22
|
+
"build": "tsup && node -e \"const fs=require('fs');['dist/index.js','dist/index.mjs'].forEach(f=>{const c='\\\"use client\\\";\\n'+fs.readFileSync(f,'utf8');fs.writeFileSync(f,c);})\";",
|
|
23
23
|
"dev": "tsup --watch",
|
|
24
24
|
"lint": "eslint src --ext .ts,.tsx",
|
|
25
25
|
"lint:fix": "eslint src --ext .ts,.tsx --fix",
|