mirror of
https://github.com/yannbertrand/macos-defaults
synced 2024-12-15 06:02:40 +00:00
6 lines
271 B
JavaScript
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`)
|
|
}
|