-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtasks.json
24 lines (24 loc) · 1014 Bytes
/
tasks.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"test": "jest",
"test:report": "jest --reporters=jest-junit",
"watch": "jest ./src --watch",
"dev": "webpack-dev-server --config ./webpack/webpack.config.js --mode development",
"prod": "webpack-dev-server --config ./webpack/webpack.config.js --mode production",
"build:working": "webpack --config ./webpack/webpack.config.js --mode production",
"build:examples": "webpack --config ./webpack/examples.config.js --mode production",
"build": "webpack --config ./webpack/webpack.config.publish.js --mode production",
"build:dev": "webpack --config ./webpack/webpack.config.publish.js --mode development",
"pretranspile": "jest ./src",
"transpile": "babel src -d lib --copy-files",
"posttranspile": "jest ./lib",
"prepages": "webpack --config ./webpack/examples.config.js --mode production",
"pages": "node ./scripts/publish.js",
"preci": [
"npx isom transpile",
"npx isom build:examples",
"npx isom build"
],
"snap": "jest -u",
"ci": "jest",
"built": "jest ./lib"
}