Skip to content

Commit

Permalink
fix: update dep (#254)
Browse files Browse the repository at this point in the history
  • Loading branch information
scttcper authored Oct 16, 2019
1 parent c77b1de commit bce6311
Show file tree
Hide file tree
Showing 6 changed files with 2,220 additions and 1,111 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2019 Scott Cooper
Copyright (c) Scott Cooper

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
3 changes: 0 additions & 3 deletions src/browserslist → browserslist
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,3 @@

> 0.5%
last 2 versions
Firefox ESR
not dead
not IE 9-11 # For IE 9-11 support, remove 'not'.
15 changes: 9 additions & 6 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,23 @@ jobs:
steps:
- checkout
- restore_cache:
key: dependency-cache-{{ checksum "package.json" }}
key: dependency-cache-{{ checksum "package-lock.json" }}
- run:
name: npm-install
command: npm install
command: npm ci
- save_cache:
key: dependency-cache-{{ checksum "package.json" }}
key: dependency-cache-{{ checksum "package-lock.json" }}
paths:
- ./node_modules
- ~/.npm
- run:
name: test
command: npm run test:ci
- run:
name: lint
command: npm run lint
- run:
name: ghpages
command: npm run ghpages
- run:
name: codecov
command: bash <(curl -s https://codecov.io/bash)
Expand All @@ -31,8 +34,8 @@ jobs:
steps:
- checkout
- restore_cache:
key: dependency-cache-{{ checksum "package.json" }}
- run: npm install
key: dependency-cache-{{ checksum "package-lock.json" }}
- run: npm ci
- run: npm run build
- run: npm run semantic-release

Expand Down
Loading

0 comments on commit bce6311

Please sign in to comment.