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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-routify",
3
- "version": "v1.5.6",
3
+ "version": "v1.5.7",
4
4
  "description": "A powerful cli for super-powering your routify development experience",
5
5
  "main": "index.js",
6
6
  "type": "module",
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) +