-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsdx.config.js
55 lines (54 loc) · 1.5 KB
/
tsdx.config.js
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
const postcss = require('rollup-plugin-postcss');
const strip = require('@rollup/plugin-strip');
// Not transpiled with TypeScript or Babel, so use plain Es6/Node.js
const replace = require('@rollup/plugin-replace');
// const url = require('@ rollup/plugin-url');
// const copy = require('rollup-plugin-copy');
module.exports = {
rollup(config, opts) {
config.plugins.push(
postcss({
config: {
path: './postcss.config.js',
},
extensions: ['.css'],
minimize: true,
inject: {
// Append to <head /> as code running
insertAt: 'top',
// only write out CSS for the first bundle (avoids pointless extra files): -> make false if we inject true
},
}),
strip({
labels: ['unittest'],
}),
// TODO: necessary for audio files
// url({
// include: [
// '**/*.svg',
// '**/*.png',
// '**/*.jp(e)?g',
// '**/*.gif',
// '**/*.webp',
// '**/*.mp3',
// ],
// destDir: 'dist/assets',
// limit: 0,
// }),
// copy({
// targets: [{ src: 'src/assets/sounds', dest: 'dist/assets' }],
// copyOnce: true,
// verbose: true,
// })
);
config.plugins = config.plugins.map(p =>
p.name === 'replace'
? replace({
'process.env.NODE_ENV': JSON.stringify(opts.env),
preventAssignment: true,
})
: p
);
return config;
},
};