-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.npmscriptrc
More file actions
30 lines (29 loc) · 838 Bytes
/
.npmscriptrc
File metadata and controls
30 lines (29 loc) · 838 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
/**
* You can provide comments in `.npmscriptrc`.
*/
{
"build":
{
"babel":
{
"source": "test/src",
"destination": "test/dist",
"options": ["--source-maps true"]
},
"copy": [{ "source": "./test/data2", "destination": "./test/dist"}],
"scripts": ["cp ./test/data/test.json ./test/dist/test.json"],
"chmod": [{ "path": "./test/dist/TestDummy.js", "mode": "755"}]
},
"build-dev":
{
"babel":
{
"source": "test/src",
"destination": "test/dist-dev",
"options": ["--source-maps true"]
},
"copy": [{ "source": "./test/data2", "destination": "./test/dist-dev"}],
"scripts": ["cp ./test/data/test.json ./test/dist-dev/test.json"],
"chmod": [{ "path": "./test/dist-dev/TestDummy.js", "mode": "755"}]
}
}