@appliance.sh/cli 1.5.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/CHANGELOG.md +24 -0
- package/package.json +27 -0
- package/src/appliance-build.ts +9 -0
- package/src/appliance-configure.ts +9 -0
- package/src/appliance.ts +17 -0
- package/tsconfig.json +8 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
## 1.5.0 (2025-12-15)
|
|
2
|
+
|
|
3
|
+
### 🚀 Features
|
|
4
|
+
|
|
5
|
+
- add cdk experimental stacks ([#8](https://github.com/appliance-sh/appliance.sh/pull/8))
|
|
6
|
+
- **api-server:** init nest project ([#7](https://github.com/appliance-sh/appliance.sh/pull/7))
|
|
7
|
+
|
|
8
|
+
### 🩹 Fixes
|
|
9
|
+
|
|
10
|
+
- package repository url again ([#19](https://github.com/appliance-sh/appliance.sh/pull/19))
|
|
11
|
+
- package repository url ([#18](https://github.com/appliance-sh/appliance.sh/pull/18))
|
|
12
|
+
- nx release projects ([#17](https://github.com/appliance-sh/appliance.sh/pull/17))
|
|
13
|
+
- nx release groups ([#16](https://github.com/appliance-sh/appliance.sh/pull/16))
|
|
14
|
+
- npm package public again ([#15](https://github.com/appliance-sh/appliance.sh/pull/15))
|
|
15
|
+
- npm package public ([#14](https://github.com/appliance-sh/appliance.sh/pull/14))
|
|
16
|
+
- release node setup ([#13](https://github.com/appliance-sh/appliance.sh/pull/13))
|
|
17
|
+
- release npm ([#12](https://github.com/appliance-sh/appliance.sh/pull/12))
|
|
18
|
+
- nx release ci again ([#11](https://github.com/appliance-sh/appliance.sh/pull/11))
|
|
19
|
+
- nx release ci ([#10](https://github.com/appliance-sh/appliance.sh/pull/10))
|
|
20
|
+
- nx workspaces and packages ([#9](https://github.com/appliance-sh/appliance.sh/pull/9))
|
|
21
|
+
|
|
22
|
+
### ❤️ Thank You
|
|
23
|
+
|
|
24
|
+
- Eliot Lim @eliotlim
|
package/package.json
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@appliance.sh/cli",
|
|
3
|
+
"version": "1.5.0",
|
|
4
|
+
"description": "Shell for installing, running, and developing applications on the Appliance platform",
|
|
5
|
+
"repository": "https://github.com/appliance-sh/appliance.sh",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"author": "Eliot Lim",
|
|
8
|
+
"type": "commonjs",
|
|
9
|
+
"main": "index.js",
|
|
10
|
+
"bin": {
|
|
11
|
+
"appliance": "dist/appliance.js"
|
|
12
|
+
},
|
|
13
|
+
"scripts": {
|
|
14
|
+
"build": "tsc",
|
|
15
|
+
"clean": "rm -rf ./dist/",
|
|
16
|
+
"dev:setup": "npm link \"@appliance.sh/sdk\" && npm install --global .",
|
|
17
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
18
|
+
},
|
|
19
|
+
"dependencies": {
|
|
20
|
+
"@appliance.sh/sdk": "1.5.0",
|
|
21
|
+
"chalk": "^5.4.1",
|
|
22
|
+
"commander": "^14.0.0"
|
|
23
|
+
},
|
|
24
|
+
"devDependencies": {
|
|
25
|
+
"@types/node": "^24.0.1"
|
|
26
|
+
}
|
|
27
|
+
}
|
package/src/appliance.ts
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
import { Command } from 'commander';
|
|
4
|
+
|
|
5
|
+
import { VERSION } from '@appliance.sh/sdk';
|
|
6
|
+
|
|
7
|
+
const program = new Command();
|
|
8
|
+
|
|
9
|
+
program
|
|
10
|
+
.name('appliance')
|
|
11
|
+
.version(VERSION)
|
|
12
|
+
.command('build', 'builds the appliance in the current working directory')
|
|
13
|
+
.command('configure', 'configures the appliance in the current working directory')
|
|
14
|
+
.command('install [appliance-names...]', 'install one or more appliances')
|
|
15
|
+
.command('remove [appliance-names...]', 'remove one or more appliances');
|
|
16
|
+
|
|
17
|
+
program.parse(process.argv);
|