@cododel/alto 0.1.6 → 0.1.7
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.js +451 -451
- package/package.json +10 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cododel/alto",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.7",
|
|
4
4
|
"description": "A powerful CLI tool for directus",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cli",
|
|
@@ -33,14 +33,6 @@
|
|
|
33
33
|
"README.md",
|
|
34
34
|
"LICENSE"
|
|
35
35
|
],
|
|
36
|
-
"scripts": {
|
|
37
|
-
"alto": "bun ./src/index.ts",
|
|
38
|
-
"build": "bun build src/index.ts --outdir dist --target node --minify --external consola --external enquirer --external execa --external yargs && cp -r src/commands/types/cli/default dist/default",
|
|
39
|
-
"prepublishOnly": "bun run build",
|
|
40
|
-
"test:install": "./scripts/test-install.sh",
|
|
41
|
-
"test:uninstall": "./scripts/test-uninstall.sh",
|
|
42
|
-
"test:full-cycle": "./scripts/test-full-cycle.sh"
|
|
43
|
-
},
|
|
44
36
|
"devDependencies": {
|
|
45
37
|
"@types/bun": "latest",
|
|
46
38
|
"@types/execa": "^2.0.2",
|
|
@@ -57,5 +49,12 @@
|
|
|
57
49
|
},
|
|
58
50
|
"workspaces": [
|
|
59
51
|
"src/commands/*"
|
|
60
|
-
]
|
|
61
|
-
|
|
52
|
+
],
|
|
53
|
+
"scripts": {
|
|
54
|
+
"alto": "bun ./src/index.ts",
|
|
55
|
+
"build": "bun build src/index.ts --outdir dist --target node --minify --external consola --external enquirer --external execa --external yargs && cp -r src/commands/types/cli/default dist/default",
|
|
56
|
+
"test:install": "./scripts/test-install.sh",
|
|
57
|
+
"test:uninstall": "./scripts/test-uninstall.sh",
|
|
58
|
+
"test:full-cycle": "./scripts/test-full-cycle.sh"
|
|
59
|
+
}
|
|
60
|
+
}
|