-
-
Notifications
You must be signed in to change notification settings - Fork 135
/
Copy pathwriter.js
46 lines (38 loc) · 1.04 KB
/
writer.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
var fs, path, mkdirp
function toFileName(delimiter, name) {
if (delimiter === "") {
return name
}
return name
.replace(/[a-z][A-Z]/g, function(str) {
return str[0] + delimiter + str[1]
})
.toLowerCase()
}
if (typeof IN_BROWSER === "undefined") {
fs = require("fs")
path = require("path")
mkdirp = require("mkdirp")
function writeToFS(components, options) {
options = options || {}
var outPath = path.resolve(options.output && options.output.path ? options.output.path : "components")
var delimiter = options.moduleFileNameDelimiter || ""
var ext = options.output && options.output.fileExtension ? options.output.fileExtension : "js"
mkdirp.sync(outPath)
Object.keys(components).forEach(function(name) {
fs.writeFileSync(
path.join(outPath, toFileName(delimiter, name)) + "." + ext,
components[name],
"utf8"
)
})
}
module.exports = {
toFileName: toFileName,
writeToFS: writeToFS
}
} else {
module.exports = {
toFileName: toFileName
}
}