@springmicro/cli 0.5.1 → 0.5.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/README.md +455 -32
- package/bin/dev.cmd +3 -3
- package/bin/dev.js +6 -6
- package/bin/run.cmd +3 -3
- package/bin/run.js +5 -5
- package/dist/commands/add/auth.d.ts +0 -0
- package/dist/commands/add/auth.js +0 -0
- package/dist/commands/add/form.d.ts +0 -0
- package/dist/commands/add/form.js +0 -0
- package/dist/commands/init/astro.d.ts +0 -0
- package/dist/commands/init/astro.js +0 -0
- package/dist/commands/init/index.d.ts +0 -0
- package/dist/commands/init/index.js +0 -0
- package/dist/data/astro/index.d.ts +0 -0
- package/dist/data/astro/index.js +235 -235
- package/dist/data/astro/replace.d.ts +0 -0
- package/dist/data/astro/replace.js +0 -0
- package/dist/data/form/index.d.ts +0 -0
- package/dist/data/form/index.js +260 -260
- package/dist/index.d.ts +0 -0
- package/dist/index.js +0 -0
- package/dist/log/index.d.ts +0 -0
- package/dist/log/index.js +0 -0
- package/dist/scripts/astro.bat +34 -34
- package/dist/scripts/astro.sh +9 -9
- package/dist/scripts/auth.bat +4 -4
- package/dist/scripts/auth.sh +3 -3
- package/dist/scripts/forms.bat +10 -10
- package/dist/scripts/forms.sh +8 -8
- package/dist/utils/shell.d.ts +0 -0
- package/dist/utils/shell.js +0 -0
- package/oclif.manifest.json +1 -1
- package/package.json +2 -2
package/dist/scripts/forms.sh
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
# no to overwriting shadcn components that have already been installed
|
|
2
|
-
yes no | pnpm dlx shadcn@latest add form
|
|
3
|
-
yes no | pnpm dlx shadcn@latest add button
|
|
4
|
-
yes no | pnpm dlx shadcn@latest add textarea
|
|
5
|
-
yes no | pnpm dlx shadcn@latest add label
|
|
6
|
-
yes no | pnpm dlx shadcn@latest add input
|
|
7
|
-
yes no | pnpm dlx shadcn@latest add sonner
|
|
8
|
-
pnpm add @springmicro/forms
|
|
1
|
+
# no to overwriting shadcn components that have already been installed
|
|
2
|
+
yes no | pnpm dlx shadcn@latest add form
|
|
3
|
+
yes no | pnpm dlx shadcn@latest add button
|
|
4
|
+
yes no | pnpm dlx shadcn@latest add textarea
|
|
5
|
+
yes no | pnpm dlx shadcn@latest add label
|
|
6
|
+
yes no | pnpm dlx shadcn@latest add input
|
|
7
|
+
yes no | pnpm dlx shadcn@latest add sonner
|
|
8
|
+
pnpm add @springmicro/forms
|
package/dist/utils/shell.d.ts
CHANGED
|
File without changes
|
package/dist/utils/shell.js
CHANGED
|
File without changes
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@springmicro/cli",
|
|
3
3
|
"description": "A new CLI generated with oclif",
|
|
4
|
-
"version": "0.5.
|
|
4
|
+
"version": "0.5.3",
|
|
5
5
|
"author": "David Buckley",
|
|
6
6
|
"private": false,
|
|
7
7
|
"publishConfig": {
|
|
@@ -76,5 +76,5 @@
|
|
|
76
76
|
"version": "oclif readme && git add README.md"
|
|
77
77
|
},
|
|
78
78
|
"types": "dist/index.d.ts",
|
|
79
|
-
"gitHead": "
|
|
79
|
+
"gitHead": "049eb0491834ffa64dd66a1d965ccd3e5751d085"
|
|
80
80
|
}
|