Skip to content
This repository has been archived by the owner on Apr 1, 2019. It is now read-only.

Commit

Permalink
fix wrong path rename
Browse files Browse the repository at this point in the history
  • Loading branch information
Walker Leite committed Sep 12, 2017
1 parent fa645bb commit 0d5f471
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions meta.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ module.exports = {
msg.concat("\n6. Build docs with npm run build:doc");
logger.log(msg);
// Rename to be compatible with styleguide configuration
fs.renameSync('src/Component/Component.vue', 'src/' + data.name + '.vue');
fs.renameSync('src/Component/Component.md', 'src/' + data.name + '.md');
fs.renameSync('src/Component/Component.vue', 'src/Component/' + data.name + '.vue');
fs.renameSync('src/Component/Component.md', 'src/Component/' + data.name + '.md');
fs.renameSync('src/Component', 'src/' + data.name);
}
};

0 comments on commit 0d5f471

Please sign in to comment.