Created
June 19, 2017 08:07
-
-
Save harrietty/f4a5433fbb52a6624783f8c660242172 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (stats.isFile()) { | |
const contents = fs.readFileSync(origFilePath, 'utf8'); | |
// Rename | |
if (file === '.npmignore') file = '.gitignore'; | |
const writePath = `${CURR_DIR}/${newProjectPath}/${file}`; | |
fs.writeFileSync(writePath, contents, 'utf8'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment