Skip to content

Commit d270b28

Browse files
committed
chore(deps): update dependencies and config files
1 parent aceb083 commit d270b28

File tree

10 files changed

+5669
-4756
lines changed

10 files changed

+5669
-4756
lines changed

.gitignore

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,14 @@
1-
*.log
1+
# directories
22
node_modules/
3+
4+
# files
5+
*.log
6+
.DS_Store
7+
8+
# yarn
9+
.yarn/*
10+
!.yarn/patches
11+
!.yarn/plugins
12+
!.yarn/releases
13+
!.yarn/sdks
14+
!.yarn/versions

.release-it.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"git": {
3+
"tagName": "${version}"
4+
},
5+
"github": {
6+
"release": true,
7+
"tokenRef": "RELEASE_IT"
8+
}
9+
}

.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs

Lines changed: 546 additions & 0 deletions
Large diffs are not rendered by default.

.yarn/releases/yarn-berry.cjs

Lines changed: 786 additions & 0 deletions
Large diffs are not rendered by default.

.yarnrc.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
nodeLinker: node-modules
2+
3+
plugins:
4+
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
5+
spec: "@yarnpkg/plugin-interactive-tools"
6+
7+
yarnPath: .yarn/releases/yarn-berry.cjs

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
ISC License
22

3-
Copyright (c) 2019 Abraham Schilling
3+
Copyright (c) 2019-2022 Abraham Schilling
44

55
Permission to use, copy, modify, and/or distribute this software for any
66
purpose with or without fee is hereby granted, provided that the above

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,15 @@
1313
<a href="https://raw.githubusercontent.com/n4bb12/config-semantic-release/master/LICENSE">
1414
<img alt="License" src="https://flat.badgen.net/github/license/n4bb12/config-semantic-release?icon=github">
1515
</a>
16-
<a href="https://github.com/n4bb12/config-semantic-release/issues/new/choose">
16+
<a href="https://github.com/n4bb12/config-semantic-release/issues/new">
1717
<img alt="Issues" src="https://flat.badgen.net/badge/github/create issue/pink?icon=github">
1818
</a>
1919
</p>
2020

2121
## Plugins
2222

2323
This configuration use the following plugins:
24+
2425
- [@semantic-release/commit-analyzer](https://github.com/semantic-release/commit-analyzer)
2526
- [@semantic-release/release-notes-generator](https://github.com/semantic-release/release-notes-generator)
2627
- [@semantic-release/npm](https://github.com/semantic-release/npm)
@@ -45,4 +46,4 @@ Extend the configuration in the semantic-release [config file](https://github.co
4546

4647
## Configuration
4748

48-
See each plugin documentation for configuration options.
49+
See each plugin's documentation for configuration options.

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ module.exports = {
66
"@semantic-release/git",
77
"@semantic-release/github",
88
],
9-
}
9+
};

package.json

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"$schema": "http://json.schemastore.org/package",
23
"name": "@n4bb12/config-semantic-release",
34
"version": "1.0.0",
45
"description": "Shareable semantic-release configuration",
@@ -14,25 +15,26 @@
1415
"repository": "github:n4bb12/config-semantic-release",
1516
"license": "ISC",
1617
"author": "Abraham Schilling",
18+
"main": "index.js",
1719
"files": [
1820
"index.js"
1921
],
20-
"main": "index.js",
2122
"scripts": {
23+
"format": "prettier --write .",
2224
"release": "semantic-release --no-ci"
2325
},
2426
"dependencies": {
25-
"@semantic-release/commit-analyzer": "^6.1.0",
26-
"@semantic-release/git": "^7.0.8",
27-
"@semantic-release/github": "^5.2.10",
28-
"@semantic-release/npm": "^5.1.4",
29-
"@semantic-release/release-notes-generator": "^7.1.4"
27+
"@semantic-release/commit-analyzer": "^9.0.2",
28+
"@semantic-release/git": "^10.0.1",
29+
"@semantic-release/github": "^8.0.4",
30+
"@semantic-release/npm": "^9.0.1",
31+
"@semantic-release/release-notes-generator": "^10.0.3",
32+
"semantic-release": "^19.0.3"
3033
},
3134
"devDependencies": {
32-
"semantic-release": "^15.13.3"
35+
"prettier": "^2.7.1"
3336
},
3437
"publishConfig": {
3538
"access": "public"
36-
},
37-
"$schema": "http://json.schemastore.org/package"
39+
}
3840
}

0 commit comments

Comments
 (0)