Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: upgrade semantic-release #102

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# Contributing

Prerequisites:

- Node LTS
- Yarn Classic (`1.22.22`)
- Git

You can use `corepack` to install and set up Yarn Classic.

```sh
corepack enable
corepack prepare --activate
yarn # installs dependencies
```

## Note about Git configuration and tests

Automated tests create new Git repositories using `git init`.
If you have configured `init.templateDir`, this setting can break tests.

To check if you have set this setting, run this command.

```sh
git config --get --global init.templateDir
```

If the command outputs a path, you need to unset that config when you run tests.

```sh
git config --unset --global init.templateDir
```

To restore the config afterwards, run this command.

```sh
git config --add --global init.templateDir <value>
```
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"node": ">=14",
"yarn": ">=1.0.0"
},
"packageManager": "yarn@1.22.22",
"type": "module",
"exports": {
".": "./lib/multiSemanticRelease.js",
Expand Down Expand Up @@ -52,18 +53,17 @@
"dependencies": {
"@semrel-extra/topo": "^1.14.0",
"blork": "^9.3.0",
"cosmiconfig": "^8.3.6",
"cosmiconfig": "^9.0.0",
"debug": "^4.3.4",
"detect-indent": "^7.0.1",
"detect-newline": "^4.0.1",
"execa": "^7.1.1",
"execa": "^9.5.2",
"get-stream": "^6.0.1",
"git-log-parser": "^1.2.0",
"lodash-es": "^4.17.21",
"meow": "^12.0.1",
"promise-events": "^0.2.4",
"meow": "^13.2.0",
"resolve-from": "^5.0.0",
"semantic-release": "^21.0.5",
"semantic-release": "^24.2.3",
"semver": "^7.5.3",
"signale": "^1.4.0",
"stream-buffers": "^3.0.2"
Expand Down
Loading