@uns-kit/cli 0.0.1 → 0.0.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 +4 -2
- package/package.json +2 -3
- package/templates/default/config.json +0 -18
package/README.md
CHANGED
|
@@ -5,9 +5,11 @@ Command line scaffolding tool for the UNS toolkit. It bootstraps a new project w
|
|
|
5
5
|
## Usage
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
pnpm
|
|
8
|
+
pnpm --package=@uns-kit/cli dlx uns-kit create my-uns-app
|
|
9
|
+
# or with npx
|
|
10
|
+
npx -p @uns-kit/cli@latest uns-kit create my-uns-app
|
|
9
11
|
# or after installing globally
|
|
10
|
-
|
|
12
|
+
npm install -g @uns-kit/cli
|
|
11
13
|
uns-kit create my-uns-app
|
|
12
14
|
```
|
|
13
15
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uns-kit/cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"description": "Command line scaffolding tool for UNS applications",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -11,8 +11,7 @@
|
|
|
11
11
|
"directory": "packages/uns-cli"
|
|
12
12
|
},
|
|
13
13
|
"bin": {
|
|
14
|
-
"uns-kit": "./dist/index.js"
|
|
15
|
-
"uns": "./dist/index.js"
|
|
14
|
+
"uns-kit": "./dist/index.js"
|
|
16
15
|
},
|
|
17
16
|
"keywords": [
|
|
18
17
|
"uns",
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"uns": {
|
|
3
|
-
"graphql": "http://localhost:3200/graphql",
|
|
4
|
-
"rest": "http://localhost:3200/api",
|
|
5
|
-
"processName": "__APP_NAME__",
|
|
6
|
-
"instanceMode": "wait",
|
|
7
|
-
"handover": true
|
|
8
|
-
},
|
|
9
|
-
"infra": {
|
|
10
|
-
"host": "localhost:1883"
|
|
11
|
-
},
|
|
12
|
-
"output": {
|
|
13
|
-
"host": "localhost:1883"
|
|
14
|
-
},
|
|
15
|
-
"input": {
|
|
16
|
-
"host": "localhost:1883"
|
|
17
|
-
}
|
|
18
|
-
}
|