(path)
| 37 | |
| 38 | const stripJs = (path) => writeFileSync(path, stripCode(readFileSync(path, 'utf8'))); |
| 39 | const stripHtml = (path) => writeFileSync(path, stripCode(fixHtml(readFileSync(path, 'utf8')))); |
| 40 | |
| 41 | const minJson = (data) => { |
| 42 | if (data.description) delete data.description; |