create-renoun 1.2.0 → 1.2.1

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.
Files changed (2) hide show
  1. package/dist/index.mjs +1 -1
  2. package/package.json +2 -2
package/dist/index.mjs CHANGED
@@ -154,7 +154,7 @@ function shouldRefreshCache() {
154
154
  throw error;
155
155
  }
156
156
  writeFileSync(join(workingDirectory, '.gitignore'), '.next\nnode_modules\nout', 'utf-8');
157
- const introInstallInstructions = workingDirectory === process.cwd() ? `Run ${color.bold(`${packageManager ?? 'npm'} install`)} to install the dependencies and get started.` : `Change to the ${color.bold(directoryName)} directory and run ${color.bold(`${packageManager ?? 'npm'} install`)} to install the dependencies and get started.`;
157
+ const introInstallInstructions = workingDirectory === process.cwd() ? `Run ${color.bold(`${packageManager ?? 'npm'} install`)} to install the dependencies and get started.` : `Change to the directory (cd ${color.bold(workingDirectory)}) and run ${color.bold(`${packageManager ?? 'npm'} install`)} to install the dependencies and get started.`;
158
158
  log.success(`Example ${color.bold(directoryName)} fetched and configured successfully! ${introInstallInstructions}`);
159
159
  return true;
160
160
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "create-renoun",
3
3
  "type": "module",
4
- "version": "1.2.0",
4
+ "version": "1.2.1",
5
5
  "author": "Travis Arnold",
6
6
  "license": "AGPL-3.0-or-later",
7
7
  "repository": {
@@ -20,7 +20,7 @@
20
20
  },
21
21
  "dependencies": {
22
22
  "@antfu/install-pkg": "^1.0.0",
23
- "@clack/prompts": "^0.10.0",
23
+ "@clack/prompts": "^0.10.1",
24
24
  "picocolors": "^1.1.1",
25
25
  "terminal-link": "^4.0.0"
26
26
  },