macos-defaults/build/github/write-config.js
2020-09-26 20:24:54 +02:00

6 lines
271 B
JavaScript

const fs = require('fs')
module.exports = (defaults, templatesPath, destinationPath) => {
fs.copyFileSync(`${templatesPath}/license`, `${destinationPath}/license`)
fs.copyFileSync(`${templatesPath}/.gitmoji-changelogrc`, `${destinationPath}/.gitmoji-changelogrc`)
}