summaryrefslogtreecommitdiff
path: root/tools/minify.js
blob: 159e34bdf45c038bcd60834c75b07231207fb2a6 (plain)
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#!/usr/bin/env node

const {minify: minifyJs} = require('terser')
const {minify: minifyHtml} = require('html-minifier-terser')
const CleanCSS = require('clean-css');
const parseArgs = require('minimist')
const {promises: fs} = require('fs')

const argv = process.argv.slice(2)
if (!argv.length) {
    console.log(`usage: ${process.argv[1]} --type js|css|html filename`)
    process.exit(1)
}

async function read() {
    const chunks = []
    for await (const chunk of process.stdin)
        chunks.push(chunk)
    return Buffer.concat(chunks).toString('utf-8')
}

const args = parseArgs(argv, {
    string: ['type'],
})

;(async () => {
    if (!['js', 'css', 'html'].includes(args.type))
        throw new Error('invalid type')

    const content = await read()

    switch (args.type) {
        case 'html':
            console.log(await minifyHtml(content, {
                collapseBooleanAttributes: true,
                collapseInlineTagWhitespace: true,
                collapseWhitespace: true,
                conservativeCollapse: true,
                html5: true,
                includeAutoGeneratedTags: true,
                keepClosingSlash: false,
                minifyCSS: true,
                minifyJS: true,
                minifyURLs: false,
                preserveLineBreaks: true,
                removeComments: true,
                removeAttributeQuotes: false,
                sortAttributes: false,
                sortClassName: false,
                useShortDoctype: true,
            }))
            break

        case 'css':
            console.log(new CleanCSS({
                level: 2
            }).minify(content).styles)
            break

        case 'js':
            console.log((await minifyJs(content, {
                mangle: {
                    eval: true,
                    keep_classnames: false,
                    keep_fnames: false,
                    module: false,
                    toplevel: true,
                },
                ecma: 5,
                format: {
                    comments: false
                }
            })).code)
            break
    }
})()