create-near-app 6.4.4 → 6.4.5
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/dist/messages.js +2 -2
- package/package.json +1 -1
package/dist/messages.js
CHANGED
|
@@ -72,10 +72,10 @@ const gatewayInstructions = (projectName, frontend, install) => frontend === 'no
|
|
|
72
72
|
{blue cd {bold ${projectName}}}
|
|
73
73
|
${!install
|
|
74
74
|
? (0, chalk_1.default) ` - {inverse Install all dependencies}
|
|
75
|
-
{blue
|
|
75
|
+
{blue npm {bold install}}`
|
|
76
76
|
: 'Then:'}
|
|
77
77
|
- {inverse Start your app}:
|
|
78
|
-
{blue
|
|
78
|
+
{blue npm {bold run dev}}`;
|
|
79
79
|
exports.gatewayInstructions = gatewayInstructions;
|
|
80
80
|
const argsError = (msg) => (0, exports.show)((0, chalk_1.default) `{red Arguments error: {white ${msg}}}
|
|
81
81
|
|