@neoptocom/neopto-ui 0.5.0 → 0.5.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.
- package/CONSUMER_SETUP.md +2 -0
- package/package.json +3 -2
- package/scripts/init.mjs +2 -1
package/CONSUMER_SETUP.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@neoptocom/neopto-ui",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "A modern React component library built with Tailwind CSS v4 and TypeScript. Features dark mode, design tokens, and comprehensive Storybook documentation. Requires Tailwind v4+.",
|
|
6
6
|
"keywords": [
|
|
@@ -44,7 +44,8 @@
|
|
|
44
44
|
"CONSUMER_SETUP.md"
|
|
45
45
|
],
|
|
46
46
|
"bin": {
|
|
47
|
-
"neopto-ui": "./scripts/init.mjs"
|
|
47
|
+
"neopto-ui": "./scripts/init.mjs",
|
|
48
|
+
"neopto-ui-init": "./scripts/init.mjs"
|
|
48
49
|
},
|
|
49
50
|
"scripts": {
|
|
50
51
|
"dev": "vite",
|
package/scripts/init.mjs
CHANGED
|
@@ -190,7 +190,8 @@ async function main() {
|
|
|
190
190
|
log(' import { Button, Input } from "@neoptocom/neopto-ui";\n', 'bold');
|
|
191
191
|
|
|
192
192
|
log('📚 Documentation: https://github.com/neoptocom/neopto-ui', 'blue');
|
|
193
|
-
log('💡 Need help? Check CONSUMER_SETUP.md in node_modules/@neoptocom/neopto-ui
|
|
193
|
+
log('💡 Need help? Check CONSUMER_SETUP.md in node_modules/@neoptocom/neopto-ui', 'blue');
|
|
194
|
+
log('🔧 Run this setup again anytime with: npx neopto-ui\n', 'blue');
|
|
194
195
|
}
|
|
195
196
|
|
|
196
197
|
main().catch((error) => {
|