-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcli.ts
executable file
·181 lines (155 loc) · 4.21 KB
/
cli.ts
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
#!/usr/bin/env node
/**
* @file cli
* @author junmer eltorio
*/
/* eslint-env node */
'use strict';
import fs from 'fs';
import meow from 'meow';
import path from 'path';
import stdin from 'get-stdin';
import Fontmin from './index.js';
import _ from 'lodash';
import { fileURLToPath } from "url";
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
const isDist = (__dirname.match(/([^\/]*)*$/)||['',''])[1] === 'dist'
let { version } = JSON.parse(fs.readFileSync(new URL(path.join(__dirname, (isDist ? '..' : '') +"/package.json"), import.meta.url)).toString());
const cli = meow([
'Usage',
' $ fontmin <file> [<output>]',
' $ fontmin <directory> [<output>]',
' $ fontmin <file> > <output>',
' $ cat <file> | fontmin > <output>',
'',
'Example',
' $ fontmin fonts/* build',
' $ fontmin fonts build',
' $ fontmin foo.ttf > foo-optimized.ttf',
' $ cat foo.ttf | fontmin > foo-optimized.ttf',
'',
'Options',
' -t, --text require glyphs by text',
' -b, --basic-text require glyphs with base chars',
' -d, --deflate-woff deflate woff',
' --font-family font-family for @font-face CSS',
' --css-glyph generate class for each glyf. default = false',
' -T, --show-time show time fontmin cost'
].join('\n'), {
importMeta: import.meta,
flags:{
version: {
type: 'boolean',
alias:'v'
},
deflateWoff:{
type: 'boolean',
alias:'d'
},
help:{
type: 'boolean',
alias:'h'
},
text:{
type:'string',
alias:'t'
},
showTime:{
type: 'boolean',
alias:'T'
},
cssGlyph:{
type: 'boolean',
},
basicText:{
type: 'boolean',
alias:'b'
},
fontFamily:{
type: 'string'
}
}
});
// version
if (cli.flags.version) {
console.log(version);
process.exit(0);
}
function isFile(path) {
if (/^[^\s]+\.\w*$/.test(path)) {
return true;
}
try {
return fs.statSync(path).isFile();
}
catch (err) {
return false;
}
}
function run(src, dest) {
cli.flags.showTime && console.time('fontmin use');
const pluginOpts = _.extend(
{},
cli.flags,
{
deflate: cli.flags.deflateWoff,
glyph: cli.flags.cssGlyph
}
);
const fontmin = new Fontmin()
.src(src)
.use(Fontmin.otf2ttf(pluginOpts as never))
.use(Fontmin.glyph(pluginOpts as never))
.use(Fontmin.ttf2eot(pluginOpts as never))
.use(Fontmin.ttf2svg(pluginOpts as never))
.use(Fontmin.ttf2woff(pluginOpts as never))
.use(Fontmin.ttf2woff2(pluginOpts as never))
.use(Fontmin.css(pluginOpts));
if (process.stdout.isTTY) {
fontmin.dest(dest ? dest : 'build');
}
fontmin.run((err, files) => {
if (err) {
console.error(err.stack || err);
process.exit(1);
}
if (!process.stdout.isTTY) {
files.forEach(file => {
process.stdout.write((file as any).contents);
});
}
cli.flags.showTime && console.timeEnd('fontmin use');
});
}
if (true) {
let src = cli.input;
let dest;
if (!cli.input.length) {
console.error([
'Provide at least one file to optimize',
'',
'Example',
' fontmin font/* build',
' fontmin foo.ttf > foo-optimized.ttf',
' cat foo.ttf | fontmin > foo-optimized.ttf',
'',
'See `fontmin --help` for more information.'
].join('\n'));
process.exit(1);
}
if (src.length > 1 && !isFile(src[src.length - 1])) {
dest = src[src.length - 1];
src.pop();
}
src = src.map(s => {
if (!isFile(s) && fs.existsSync(s)) {
return path.join(s, '**/*');
}
return s;
});
run(src, dest);
}
else {
stdin.buffer();
}