UNPKG
chanlog
Version:
latest (1.0.1)
1.0.1
1.0.0
0.0.2
0.0.1
A beautiful tool to make changelog file
chanlog
/
lib
/
utils
/
write-file.js
7 lines
(5 loc)
•
154 B
JavaScript
View Raw
1
2
3
4
5
6
7
const
fs =
require
(
'fs'
)
module
.
exports
=
function
(
args, filePath, content
) {
if
(args.
dryRun
)
return
fs.
writeFileSync
(filePath, content,
'utf8'
) }