@airmoney-degn/airmoney-cli 0.13.2 → 0.13.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/dist/cli/create.js +6 -1
- package/dist/config.json +1 -1
- package/package.json +1 -1
package/dist/cli/create.js
CHANGED
|
@@ -97,7 +97,12 @@ async function createCommand(name, network, template, locationFolder) {
|
|
|
97
97
|
console.log(` cd ${name}`);
|
|
98
98
|
if (template) {
|
|
99
99
|
console.log(' npm install');
|
|
100
|
-
console.log(
|
|
100
|
+
console.log('\n- Development mode:');
|
|
101
|
+
console.log(' npm run dev');
|
|
102
|
+
console.log(' airmoney-cli serve -u http://localhost:5173');
|
|
103
|
+
console.log('\n- Production build:');
|
|
104
|
+
console.log(' npm run build');
|
|
105
|
+
console.log(' airmoney-cli serve -f dist');
|
|
101
106
|
}
|
|
102
107
|
else {
|
|
103
108
|
console.log(' airmoney-cli serve');
|
package/dist/config.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@airmoney-degn/airmoney-cli",
|
|
3
|
-
"version": "0.13.
|
|
3
|
+
"version": "0.13.3",
|
|
4
4
|
"description": "airmoney-cli is a command-line interface tool designed to facilitate the development and management of decentralized applications (DApps) for Airmoney.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|