@cododel/alto 0.0.2 → 0.1.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/README.md +6 -9
- package/package.json +6 -7
package/README.md
CHANGED
|
@@ -34,15 +34,6 @@ bunx @cododel/alto <command>
|
|
|
34
34
|
npx @cododel/alto <command>
|
|
35
35
|
```
|
|
36
36
|
|
|
37
|
-
### Binary Installation (Standalone)
|
|
38
|
-
|
|
39
|
-
The package also includes pre-compiled binaries for different platforms:
|
|
40
|
-
|
|
41
|
-
- `alto` - JavaScript version (requires Node.js/Bun)
|
|
42
|
-
- `alto-binary` - Standalone binary (no runtime required)
|
|
43
|
-
|
|
44
|
-
The standalone binary is automatically available after installation and can be used without any runtime dependencies.
|
|
45
|
-
|
|
46
37
|
## Usage
|
|
47
38
|
|
|
48
39
|
After installation, you can use the CLI with the `alto` command:
|
|
@@ -71,6 +62,12 @@ bun run alto
|
|
|
71
62
|
# Test local installation
|
|
72
63
|
bun run test:install
|
|
73
64
|
|
|
65
|
+
# Test package uninstallation
|
|
66
|
+
bun run test:uninstall
|
|
67
|
+
|
|
68
|
+
# Run full installation cycle test
|
|
69
|
+
bun run test:full-cycle
|
|
70
|
+
|
|
74
71
|
# Build for distribution
|
|
75
72
|
bun run build
|
|
76
73
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cododel/alto",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "A powerful CLI tool for directus",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cli",
|
|
@@ -22,8 +22,7 @@
|
|
|
22
22
|
"module": "dist/index.js",
|
|
23
23
|
"type": "module",
|
|
24
24
|
"bin": {
|
|
25
|
-
"alto": "dist/index.js"
|
|
26
|
-
"alto-binary": "dist/alto"
|
|
25
|
+
"alto": "dist/index.js"
|
|
27
26
|
},
|
|
28
27
|
"exports": {
|
|
29
28
|
".": "./dist/index.js",
|
|
@@ -37,10 +36,10 @@
|
|
|
37
36
|
"scripts": {
|
|
38
37
|
"alto": "bun ./src/index.ts",
|
|
39
38
|
"build": "bun build src/index.ts --outdir dist --target node --minify --external consola --external enquirer --external execa --external yargs",
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"test:
|
|
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"
|
|
44
43
|
},
|
|
45
44
|
"workspaces": [
|
|
46
45
|
"src/commands/*"
|