mirror of
https://github.com/yannbertrand/macos-defaults
synced 2024-12-14 21:52:33 +00:00
9 lines
283 B
JavaScript
9 lines
283 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`
|
|
)
|
|
}
|