-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.js
More file actions
30 lines (29 loc) · 776 Bytes
/
Copy pathbuild.js
File metadata and controls
30 lines (29 loc) · 776 Bytes
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
const esbuild = require('esbuild');
const { nodeExternalsPlugin } = require('esbuild-node-externals');
const autoprefixer = require('autoprefixer');
const postCssPlugin = require('@deanc/esbuild-plugin-postcss');
esbuild
.build({
entryPoints: ['src/index.ts'],
outdir: 'dist',
allowOverwrite: true,
bundle: true,
platform: 'node',
sourcemap: true,
target: ['chrome91', 'edge90', 'firefox90', 'safari13'],
plugins: [
nodeExternalsPlugin(),
postCssPlugin({
plugins: [
require('postcss-preset-env')({
stage: 3,
features: {
'nesting-rules': true,
},
}),
require('autoprefixer'),
],
}),
],
})
.catch(() => process.exit(1));