git ssb

16+

Dominic / patchbay



Tree: 7470f29e565172555b9c2e102a58e88dd52a2d6a

Files: 7470f29e565172555b9c2e102a58e88dd52a2d6a / scripts / build.js

366 bytesRaw
1var fs = require('fs')
2var path = require('path')
3
4console.log(
5 'module.exports = {\n'
6 +
7 fs.readdirSync(path.join(__dirname, process.argv[2]))
8// .filter(function (file) {
9// return file !== '_index.js' && /\.js$/.test(file)
10// })
11 .map(function (file) {
12 return ' '+JSON.stringify(file) + ": require('./"+file+"')"
13 }).join(',\n')
14 +
15 '\n}'
16)
17
18
19

Built with git-ssb-web