Skip to content

Commit e92413a

Browse files
committed
fix: remove semantic release changelog plugin
1 parent 848671d commit e92413a

File tree

6 files changed

+8
-13860
lines changed

6 files changed

+8
-13860
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111
steps:
1212
- checkout
1313
- restore_cache:
14-
key: dependency-cache-{{ checksum "yarn.lock" }}
14+
key: dependency-cache-{{ checksum "package-lock.json" }}
1515
- run:
1616
name: install dependences
1717
command: npm install
1818
- save_cache:
19-
key: dependency-cache-{{ checksum "yarn.lock" }}
19+
key: dependency-cache-{{ checksum "package-lock.json" }}
2020
paths:
2121
- ./node_modules
2222
- run:

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
package-lock=false

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
sudo: false
22
language: node_js
33
cache:
4-
yarn: true
54
directories:
5+
- ~/.npm
66
- node_modules
77
notifications:
88
email: false
@@ -18,7 +18,7 @@ after_success:
1818
- npm install -g travis-deploy-once
1919
- travis-deploy-once "npm run semantic-release"
2020
- cd examples
21-
- yarn
21+
- npm install
2222
- npm run deploy -- --ci --host-token-env-variable=GITHUB_TOKEN
2323
branches:
2424
only:

examples/.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
package-lock=false

0 commit comments

Comments
 (0)