flysoft-react-ui 1.3.3 → 1.4.0
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/components/layout/Collection.d.ts +2 -0
- package/dist/components/layout/Collection.d.ts.map +1 -1
- package/dist/contexts/AppLayoutContext.d.ts +13 -0
- package/dist/contexts/AppLayoutContext.d.ts.map +1 -1
- package/dist/index.css +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +5 -2
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "flysoft-react-ui",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.4.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "A modern React UI component library with Tailwind CSS, TypeScript, and FontAwesome 5. Includes forms, layouts, themes, and templates for rapid development.",
|
|
7
7
|
"keywords": [
|
|
@@ -54,11 +54,14 @@
|
|
|
54
54
|
"scripts": {
|
|
55
55
|
"dev": "vite --port 3112 --strictPort",
|
|
56
56
|
"clean:dist": "node -e \"const fs=require('fs'); fs.rmSync('dist',{recursive:true,force:true});\"",
|
|
57
|
-
"build": "npm run clean:dist && vite build && tsc -p tsconfig.lib.json",
|
|
57
|
+
"build": "npm run clean:dist && vite build && tsc -p tsconfig.lib.json && npm run docs:skill",
|
|
58
58
|
"build:types": "tsc -p tsconfig.lib.json --emitDeclarationOnly",
|
|
59
59
|
"preview": "vite preview",
|
|
60
60
|
"lint": "eslint .",
|
|
61
61
|
"prepublishOnly": "npm run build",
|
|
62
|
+
"docs:skill": "node scripts/generate-skill-refs.js",
|
|
63
|
+
"docs:skill:check": "node scripts/generate-skill-refs.js --check",
|
|
64
|
+
"version": "npm run docs:skill && git add claude",
|
|
62
65
|
"publish:patch": "npm version patch && npm publish",
|
|
63
66
|
"publish:minor": "npm version minor && npm publish",
|
|
64
67
|
"publish:major": "npm version major && npm publish",
|