Skip to content

Commit 5e4c16d

Browse files
author
Rik Smith-Unna
committed
Restore optionaldeps and remove webworker dependency during build
1 parent e5bcf5f commit 5e4c16d

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ init:
1010

1111
install:
1212
- ps: Install-Product node 8 x64
13-
- yarn && cd app && yarn --ignore-optional && yarn run rebuildwin && cd ..
13+
- yarn && cd app && yarn && yarn run rebuildwin && cd ..
1414
- rm -rf app/node_modules/webworker-threads
1515

1616
build_script:

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ before_install:
3737
install:
3838
- yarn
3939
- yarn add electron-builder@next --dev # force install next version to test electron-builder
40-
- cd app && yarn --ignore-optional && cd ..
40+
- cd app && yarn && cd ..
41+
- rm -rf ./app/node_modules/webworker-threads
4142

4243
script:
4344
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then yarn run buildosx ; fi

0 commit comments

Comments
 (0)