Skip to content

Commit

Permalink
feat: set up repos with yarn instead of npm (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
felixfbecker authored Nov 6, 2018
1 parent c18948d commit d8fe908
Show file tree
Hide file tree
Showing 6 changed files with 5,661 additions and 5,456 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
dist/
node_modules/
package-lock.json
16 changes: 8 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
language: node_js
node_js: '10'
cache:
directories:
- ~/.npm
cache: yarn
env:
global:
- FORCE_COLOR=1
install:
- yarn
jobs:
include:
- stage: test
script:
- npm run prettier
- npm run tslint
- npm run build
- yarn run prettier
- yarn run tslint
- yarn run build
- stage: release
script:
- npm run build
- npm run semantic-release
- yarn run build
- yarn run semantic-release
stages:
- test
- name: release
Expand Down
Loading

0 comments on commit d8fe908

Please sign in to comment.