create-renoun 2.0.4 → 2.0.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/index.mjs +5 -2
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -159,9 +159,13 @@ node_modules
|
|
|
159
159
|
# testing
|
|
160
160
|
coverage
|
|
161
161
|
|
|
162
|
+
# renoun
|
|
163
|
+
.renoun
|
|
164
|
+
|
|
162
165
|
# next.js
|
|
163
166
|
.next
|
|
164
167
|
out
|
|
168
|
+
next-env.d.ts
|
|
165
169
|
|
|
166
170
|
# production
|
|
167
171
|
build
|
|
@@ -173,13 +177,12 @@ dist
|
|
|
173
177
|
# debug
|
|
174
178
|
npm-debug.log*
|
|
175
179
|
|
|
176
|
-
#
|
|
180
|
+
# environment files
|
|
177
181
|
.env
|
|
178
182
|
.env.local
|
|
179
183
|
|
|
180
184
|
# typescript
|
|
181
185
|
*.tsbuildinfo
|
|
182
|
-
next-env.d.ts
|
|
183
186
|
`, 'utf-8');
|
|
184
187
|
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.`;
|
|
185
188
|
log.success(`Example ${color.bold(directoryName)} fetched and configured successfully! ${introInstallInstructions}`);
|