From 90023a7c25a47cbe048f9fe5e145185d8a18abc4 Mon Sep 17 00:00:00 2001 From: fxy060608 Date: Mon, 19 Nov 2018 17:05:34 +0800 Subject: [PATCH] revert generate --- generator.js | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/generator.js b/generator.js index 01da9c8..7e2fa96 100644 --- a/generator.js +++ b/generator.js @@ -4,7 +4,28 @@ const path = require('path') const isBinary = require('isbinaryfile') const stripJsonComments = require('strip-json-comments') +async function generate(dir, files, base = '') { + const glob = require('glob') + + glob.sync('**/*', { + cwd: dir, + nodir: true + }).forEach(rawPath => { + const sourcePath = path.resolve(dir, rawPath) + if (isBinary.sync(sourcePath)) { + files[path.join(base, rawPath)] = fs.readFileSync(sourcePath) // return buffer + } else { + const content = fs.readFileSync(sourcePath, 'utf-8') + if (sourcePath.indexOf('manifest.json') !== -1 || sourcePath.indexOf('pages.json') !== -1) { + files[path.join(base, rawPath)] = JSON.stringify(JSON.parse(stripJsonComments(content)), null, 2) + } else { + files[path.join(base, rawPath)] = content + } + } + }) + +} module.exports = (api, options, rootOptions) => {