@dhis2/cli 5.2.0-alpha.17 → 5.2.0-alpha.19
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 +4 -4
- package/src/index.js +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dhis2/cli",
|
|
3
|
-
"version": "5.2.0-alpha.
|
|
3
|
+
"version": "5.2.0-alpha.19",
|
|
4
4
|
"description": "A command line interface for DHIS2 development workflows",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"author": "Austin McGee <austin@dhis2.org>",
|
|
@@ -12,12 +12,12 @@
|
|
|
12
12
|
"node": ">=12"
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@dhis2/cli-app": "5.2.0-alpha.
|
|
16
|
-
"@dhis2/cli-cluster": "5.2.0-alpha.
|
|
15
|
+
"@dhis2/cli-app": "5.2.0-alpha.19",
|
|
16
|
+
"@dhis2/cli-cluster": "5.2.0-alpha.19",
|
|
17
17
|
"@dhis2/cli-create": "5.2.0-alpha.14",
|
|
18
18
|
"@dhis2/cli-helpers-engine": "^3.2.1",
|
|
19
19
|
"@dhis2/cli-style": "^10.7.9",
|
|
20
|
-
"@dhis2/cli-utils": "5.2.0-alpha.
|
|
20
|
+
"@dhis2/cli-utils": "5.2.0-alpha.19",
|
|
21
21
|
"cli-table3": "^0.6.0",
|
|
22
22
|
"envinfo": "^7.5.0",
|
|
23
23
|
"inquirer": "^7.1.0"
|
package/src/index.js
CHANGED
|
@@ -17,8 +17,8 @@ const command = namespace('d2', {
|
|
|
17
17
|
`Check the D2 CLI documentation: ${chalk.underline(
|
|
18
18
|
'https://developers.dhis2.org/docs/cli'
|
|
19
19
|
)}. To create new web apps, you can also now run ${chalk.cyan(
|
|
20
|
-
'npm create @dhis2
|
|
21
|
-
)}
|
|
20
|
+
'npm create @dhis2/app'
|
|
21
|
+
)}.\n`
|
|
22
22
|
)
|
|
23
23
|
)
|
|
24
24
|
}
|