mirror of
https://github.com/yannbertrand/macos-defaults
synced 2025-01-07 17:08:47 +00:00
7 lines
271 B
JavaScript
7 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`)
|
||
|
}
|