@danceroutine/tango-cli 1.0.2 → 1.1.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/README.md +1 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -21,6 +21,7 @@ Use the `tango` binary when you want to:
|
|
|
21
21
|
|
|
22
22
|
```bash
|
|
23
23
|
tango new my-app --framework express --package-manager pnpm --dialect sqlite
|
|
24
|
+
tango new my-nuxt-app --framework nuxt --package-manager pnpm --dialect sqlite
|
|
24
25
|
tango make:migrations --config ./tango.config.ts --models ./src/models.ts --name add_posts
|
|
25
26
|
tango migrate --config ./tango.config.ts
|
|
26
27
|
tango plan --config ./tango.config.ts
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@danceroutine/tango-cli",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "Unified Tango command line interface for migrations and code generation",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -33,8 +33,8 @@
|
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"yargs": "^17.7.2",
|
|
36
|
-
"@danceroutine/tango-codegen": "1.0
|
|
37
|
-
"@danceroutine/tango-migrations": "1.0
|
|
36
|
+
"@danceroutine/tango-codegen": "1.1.0",
|
|
37
|
+
"@danceroutine/tango-migrations": "1.1.0"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@types/node": "^22.9.0",
|