Skip to content

Commit f553c65

Browse files
committed
chore: update dependencies
1 parent 168e255 commit f553c65

File tree

5 files changed

+23
-18
lines changed

5 files changed

+23
-18
lines changed

.all-contributorsrc

+3-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"projectOwner": "remark-embedder",
44
"imageSize": 100,
55
"commit": false,
6+
"commitConvention": "none"
67
"contributorsPerLine": 7,
78
"repoHost": "https://github.com",
89
"repoType": "github",
@@ -20,7 +21,8 @@
2021
"code",
2122
"doc",
2223
"infra",
23-
"test"
24+
"test",
25+
"maintenance"
2426
]
2527
}
2628
]

.github/dependabot.yml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: github-actions
4+
directory: /
5+
schedule:
6+
interval: daily
7+
8+
- package-ecosystem: npm
9+
directory: /
10+
schedule:
11+
interval: daily

.github/workflows/validate.yml

+4-12
Original file line numberDiff line numberDiff line change
@@ -20,24 +20,20 @@ jobs:
2020
runs-on: ubuntu-latest
2121
steps:
2222
- name: 🛑 Cancel Previous Runs
23-
uses: styfle/[email protected]
24-
with:
25-
access_token: ${{ secrets.GITHUB_TOKEN }}
23+
uses: styfle/[email protected]
2624

2725
- name: ⬇️ Checkout repo
2826
uses: actions/checkout@v2
2927

3028
- name: ⎔ Setup node
31-
uses: actions/setup-node@v1
29+
uses: actions/setup-node@v2
3230
with:
3331
node-version: ${{ matrix.node }}
3432

3533
- name: 📥 Download deps
3634
uses: bahmutov/npm-install@v1
3735
with:
3836
useLockFile: false
39-
env:
40-
HUSKY_SKIP_INSTALL: true
4137

4238
- name: ▶️ Run validate script
4339
run: npm run validate
@@ -54,24 +50,20 @@ jobs:
5450
github.ref) && github.event_name == 'push' }}
5551
steps:
5652
- name: 🛑 Cancel Previous Runs
57-
uses: styfle/[email protected]
58-
with:
59-
access_token: ${{ secrets.GITHUB_TOKEN }}
53+
uses: styfle/[email protected]
6054

6155
- name: ⬇️ Checkout repo
6256
uses: actions/checkout@v2
6357

6458
- name: ⎔ Setup node
65-
uses: actions/setup-node@v1
59+
uses: actions/setup-node@v2
6660
with:
6761
node-version: 14
6862

6963
- name: 📥 Download deps
7064
uses: bahmutov/npm-install@v1
7165
with:
7266
useLockFile: false
73-
env:
74-
HUSKY_SKIP_INSTALL: true
7567

7668
- name: 🏗 Run build script
7769
run: npm run build

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ Thanks goes to these people ([emoji key][emojis]):
133133
<!-- markdownlint-disable -->
134134
<table>
135135
<tr>
136-
<td align="center"><a href="https://michaeldeboey.be"><img src="https://avatars3.githubusercontent.com/u/6643991?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Michaël De Boey</b></sub></a><br /><a href="https://github.com/remark-embedder/transformer-codesandbox/commits?author=MichaelDeBoey" title="Code">💻</a> <a href="https://github.com/remark-embedder/transformer-codesandbox/commits?author=MichaelDeBoey" title="Documentation">📖</a> <a href="#infra-MichaelDeBoey" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a> <a href="https://github.com/remark-embedder/transformer-codesandbox/commits?author=MichaelDeBoey" title="Tests">⚠️</a></td>
136+
<td align="center"><a href="https://michaeldeboey.be"><img src="https://avatars3.githubusercontent.com/u/6643991?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Michaël De Boey</b></sub></a><br /><a href="https://github.com/remark-embedder/transformer-codesandbox/commits?author=MichaelDeBoey" title="Code">💻</a> <a href="https://github.com/remark-embedder/transformer-codesandbox/commits?author=MichaelDeBoey" title="Documentation">📖</a> <a href="#infra-MichaelDeBoey" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a> <a href="https://github.com/remark-embedder/transformer-codesandbox/commits?author=MichaelDeBoey" title="Tests">⚠️</a> <a href="#maintenance-MichaelDeBoey" title="Maintenance">🚧</a></td>
137137
</tr>
138138
</table>
139139

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -40,15 +40,15 @@
4040
"validate": "kcd-scripts validate"
4141
},
4242
"dependencies": {
43-
"@babel/runtime": "^7.12.5"
43+
"@babel/runtime": "^7.13.10"
4444
},
4545
"devDependencies": {
4646
"@remark-embedder/core": "^1.2.4",
47-
"@types/jest": "^26.0.19",
48-
"kcd-scripts": "^7.5.3",
47+
"@types/jest": "^26.0.22",
48+
"kcd-scripts": "^9.0.0",
4949
"remark": "^13.0.0",
5050
"remark-html": "^13.0.1",
51-
"typescript": "^4.1.3"
51+
"typescript": "^4.2.4"
5252
},
5353
"peerDependencies": {
5454
"@remark-embedder/core": "^1.0.0"

0 commit comments

Comments
 (0)