meshjs 1.7.27 → 1.7.28

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/index.cjs CHANGED
@@ -124,8 +124,9 @@ var logInfo = (message) => {
124
124
  // src/actions/create.ts
125
125
  var create = async (name, options) => {
126
126
  const template = options.template ?? await askUser("What template do you want to use?", [
127
- { title: "Aiken", value: "mesh-aiken" },
128
- { title: "NextJS", value: "mesh-nextjs" }
127
+ { title: "NextJS", value: "mesh-nextjs" },
128
+ { title: "Svelte", value: "mesh-svelte" },
129
+ { title: "Aiken", value: "mesh-aiken" }
129
130
  ]);
130
131
  console.log("\n");
131
132
  try {
@@ -236,6 +237,7 @@ var main = async () => {
236
237
  };
237
238
  main().then(() => {
238
239
  logSuccess("\u2728\u2728 Welcome to Web 3.0! \u2728\u2728");
240
+ logInfo('Run "cd <project-name>" and "npm run dev" to start your dApp.');
239
241
  process.exit(0);
240
242
  }).catch((error) => {
241
243
  logError(error);
package/dist/index.js CHANGED
@@ -105,8 +105,9 @@ var logInfo = (message) => {
105
105
  // src/actions/create.ts
106
106
  var create = async (name, options) => {
107
107
  const template = options.template ?? await askUser("What template do you want to use?", [
108
- { title: "Aiken", value: "mesh-aiken" },
109
- { title: "NextJS", value: "mesh-nextjs" }
108
+ { title: "NextJS", value: "mesh-nextjs" },
109
+ { title: "Svelte", value: "mesh-svelte" },
110
+ { title: "Aiken", value: "mesh-aiken" }
110
111
  ]);
111
112
  console.log("\n");
112
113
  try {
@@ -217,6 +218,7 @@ var main = async () => {
217
218
  };
218
219
  main().then(() => {
219
220
  logSuccess("\u2728\u2728 Welcome to Web 3.0! \u2728\u2728");
221
+ logInfo('Run "cd <project-name>" and "npm run dev" to start your dApp.');
220
222
  process.exit(0);
221
223
  }).catch((error) => {
222
224
  logError(error);
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "A quick and easy way to bootstrap your dApps on Cardano using Mesh.",
4
4
  "homepage": "https://meshjs.dev",
5
5
  "author": "MeshJS",
6
- "version": "1.7.27",
6
+ "version": "1.7.28",
7
7
  "license": "Apache-2.0",
8
8
  "type": "module",
9
9
  "main": "./dist/index.cjs",