create-message-kit 1.0.13 → 1.0.14

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/index.js +2 -3
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -163,8 +163,7 @@ function logNextSteps(name, pkgManager) {
163
163
  log.message("Next steps:");
164
164
  log.step(`1. ${pc.red(`cd ./${name}`)} - Navigate to project`);
165
165
  log.step(`2. ${pc.red(`code .`)} - Open with your favorite editor`);
166
- log.step(`3. ${pc.red(`${pkgManager} i`)} - Install dependencies`);
167
- log.step(`4. ${pc.red(`${pkgManager} dev`)} - Build and start project`);
166
+ log.step(`3. ${pc.green("Start building!")}`);
168
167
  }
169
168
  function createGitignore(destDir) {
170
169
  const gitignoreContent = `
@@ -225,7 +224,7 @@ function createReadme(destDir, templateType, projectName, packageManager) {
225
224
 
226
225
  const readmeContent = `# ${projectName}
227
226
 
228
- This project is generated using the [MessageKit](https://message-kit.vercel.app) v${version} CLI and uses the \`${templateType}\` template. Below are the instructions to set up and run the project.
227
+ This project is powered by the [MessageKit](https://messagekit.ephemerahq.com/)
229
228
 
230
229
  ## Setup
231
230
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-message-kit",
3
- "version": "1.0.13",
3
+ "version": "1.0.14",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "main": "index.js",