create-routify 1.5.6 → 1.5.7
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/package.json +1 -1
- package/src/index.js +1 -1
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -342,9 +342,9 @@ export const run = async (options) => {
|
|
|
342
342
|
await handleFeatures(options);
|
|
343
343
|
const { preInstall, postInstall } = options.template.manifest;
|
|
344
344
|
await preInstall(options, tools);
|
|
345
|
+
await removeExcludedFiles(options);
|
|
345
346
|
await install(options);
|
|
346
347
|
await postInstall(options, tools);
|
|
347
|
-
await removeExcludedFiles(options);
|
|
348
348
|
|
|
349
349
|
p.note(
|
|
350
350
|
prompts.nextSteps(options.dir, options.packageManager) +
|