UNPKG
simple-ps
Version:
latest (0.0.5)
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
0.0.0
A Simple Implementation of Production System.
github.com/ksaito-hiu/simple-ps
ksaito-hiu/simple-ps
simple-ps
/
webpack.config.js
15 lines
(13 loc)
•
256 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
const
path
=
require
(
'path'
);
module
.exports = { entry:
'./src/index.js'
,
output
: {
path
:
path
.resolve(__dirname,
'dist'
), filename:
'simple-ps.js'
, library: { name:
"SimplePS"
,
type
:
"umd"
}, }, mode:
"production"
, };