Skip to content

Commit 002642e

Browse files
committed
Use Yarn
1 parent 2706816 commit 002642e

File tree

3 files changed

+10
-12
lines changed

3 files changed

+10
-12
lines changed

.travis.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ branches:
1414
- master
1515

1616
install:
17-
- npm install
17+
- yarn install
1818

1919
script:
20-
- npm test
21-
- npm run dist
20+
- yarn test
21+
- yanr build

appveyor.yml

+5-6
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,14 @@ branches:
77
environment:
88
nodejs_version: "7"
99

10-
install:
11-
- npm install
12-
1310
platform:
14-
- x86
1511
- x64
1612

13+
install:
14+
- yarn install
15+
1716
test_script:
18-
- npm test
17+
- yarn test
1918

2019
build_script:
21-
- npm run dist
20+
- yarn build

package.json

+2-3
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,8 @@
1919
},
2020
"scripts": {
2121
"electron": "electron .",
22-
"pack": "build --dir",
23-
"dist": "build -p never",
24-
"test": "mocha"
22+
"test": "mocha",
23+
"build": "build -p never"
2524
},
2625
"build": {
2726
"appId": "br.art.multisolution.runrunitplus",

0 commit comments

Comments
 (0)