forked from appbaseio/reactivesearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage-scripts.js
82 lines (80 loc) · 2.59 KB
/
package-scripts.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
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
const npsUtils = require('nps-utils');
const {
series, concurrent, rimraf, crossEnv,
} = npsUtils;
module.exports = {
scripts: {
test: {
default: crossEnv('NODE_ENV=test jest --coverage'),
update: crossEnv('NODE_ENV=test jest --coverage'),
watch: crossEnv('NODE_ENV=test jest --watch'),
codeCov: crossEnv('cat ./coverage/lcov.info | ./node_modules/codecov.io/bin/codecov.io.js'),
},
watch: {
description: 'delete the dist directory and run all builds in watch mode',
default: series(
rimraf('dist'),
concurrent.nps(
'build.esWatch',
'build.cjsWatch',
// 'build.umdWatch.main',
// 'build.umdWatch.min',
),
),
},
build: {
description: 'delete the dist directory and run all builds',
default: series(rimraf('dist'), concurrent.nps('build.es', 'build.cjs')),
es: {
description: 'run the build with rollup (uses rollup.config.js)',
script: 'rollup --config --environment FORMAT:es',
},
cjs: {
description: 'run rollup build with CommonJS format',
script: 'rollup --config --environment FORMAT:cjs',
},
esWatch: {
description: 'run the build with rollup (uses rollup.config.js)',
script: 'rollup --config --environment FORMAT:es --watch',
},
cjsWatch: {
description: 'run rollup build with CommonJS format',
script: 'rollup --config --environment FORMAT:cjs --watch',
},
umdWatch: {
min: {
description: 'run the rollup build with sourcemaps',
script: 'rollup --config --sourcemap --environment MINIFY,FORMAT:umd --watch',
},
main: {
description: 'builds the cjs and umd files',
script: 'rollup --config --sourcemap --environment FORMAT:umd --watch',
},
},
umd: {
min: {
description: 'run the rollup build with sourcemaps',
script: 'rollup --config --sourcemap --environment MINIFY,FORMAT:umd',
},
main: {
description: 'builds the cjs and umd files',
script: 'rollup --config --sourcemap --environment FORMAT:umd',
},
},
andTest: series.nps('build'),
},
copyTypes: series(npsUtils.copy('dist')),
lint: {
description: 'lint the entire project',
script: 'eslint .',
},
validate: {
description:
'This runs several scripts to make sure things look good before committing or on clean install',
default: concurrent.nps('build.andTest'),
},
},
options: {
silent: false,
},
};