@geastack/cli 0.1.0 → 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/package.json +5 -5
- package/src/create-geastack.mjs +2 -2
- package/src/gea.mjs +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@geastack/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Command-line front door for GeaStack apps, targets, and local toolchains.",
|
|
6
6
|
"publishConfig": {
|
|
@@ -23,12 +23,12 @@
|
|
|
23
23
|
"./errors": "./src/errors.mjs"
|
|
24
24
|
},
|
|
25
25
|
"bin": {
|
|
26
|
-
"gea": "
|
|
27
|
-
"create-geastack": "
|
|
26
|
+
"gea": "bin/gea.mjs",
|
|
27
|
+
"create-geastack": "bin/create-geastack.mjs"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@geastack/core": "0.1.
|
|
31
|
-
"@geastack/targets": "0.1.
|
|
30
|
+
"@geastack/core": "0.1.3",
|
|
31
|
+
"@geastack/targets": "0.1.3"
|
|
32
32
|
},
|
|
33
33
|
"scripts": {
|
|
34
34
|
"check": "node --check bin/gea.mjs && node --check bin/create-geastack.mjs && find src test packages -name '*.mjs' -print0 | xargs -0 -n1 node --check",
|
package/src/create-geastack.mjs
CHANGED
|
@@ -37,8 +37,8 @@ export async function runCreateGeastack(argv, io = {}) {
|
|
|
37
37
|
|
|
38
38
|
const ctx = createContext(parsed, env, cwd)
|
|
39
39
|
const displayName = option(parsed, 'name', titleFromId(appId))
|
|
40
|
-
const coreDependency = option(parsed, 'core-dependency') || '^0.1.
|
|
41
|
-
const cliDependency = option(parsed, 'cli-dependency') || '^0.1.
|
|
40
|
+
const coreDependency = option(parsed, 'core-dependency') || '^0.1.3'
|
|
41
|
+
const cliDependency = option(parsed, 'cli-dependency') || '^0.1.1'
|
|
42
42
|
const starter = await resolveStarter(ctx, parsed, io)
|
|
43
43
|
|
|
44
44
|
fs.mkdirSync(targetDir, { recursive: true })
|
package/src/gea.mjs
CHANGED
|
@@ -18,7 +18,7 @@ import { runExternal } from './run.mjs'
|
|
|
18
18
|
import { runSetupWizard } from './setup-wizard.mjs'
|
|
19
19
|
import { commandVersion, nodeAtLeast } from './toolchain.mjs'
|
|
20
20
|
|
|
21
|
-
const version = '0.1.
|
|
21
|
+
const version = '0.1.1'
|
|
22
22
|
|
|
23
23
|
export async function runGea(argv, io = {}) {
|
|
24
24
|
const parsed = parseArgs(argv)
|