Skip to content

Commit 34b513f

Browse files
authored
Merge pull request #553 from m-shaka/specify-engines-field
prepare major release
2 parents d035e79 + b733676 commit 34b513f

File tree

6 files changed

+3297
-1289
lines changed

6 files changed

+3297
-1289
lines changed

.changeset/chilled-pugs-knock.md

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
'neverthrow': major
3+
---
4+
5+
Declare the minimum supported Node.js version
6+
7+
`Neverthrow` does not depend on any Node.js version-specific features, so it should work with any version of Node.js that supports ES6 and other runtimes like Browser, Deno, etc.
8+
9+
However, for the sake of maintaining a consistent development environment, we should declare the minimum supported version of Node.js in the `engines` field of the `package.json` file.
10+

.changeset/config.json

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"$schema": "https://unpkg.com/@changesets/config@3.0.0/schema.json",
3+
"changelog": [
4+
"@changesets/changelog-github",
5+
{
6+
"repo": "supermacro/neverthrow"
7+
}
8+
],
9+
"commit": false,
10+
"fixed": [],
11+
"linked": [],
12+
"access": "public",
13+
"baseBranch": "master",
14+
"updateInternalDependencies": "patch",
15+
"ignore": []
16+
}

.github/workflows/release.yml

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
name: Release
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
8+
concurrency: ${{ github.workflow }}-${{ github.ref }}
9+
10+
jobs:
11+
create_pr:
12+
name: Release
13+
runs-on: ubuntu-latest
14+
outputs:
15+
hasChangesets: ${{ steps.changesets.outputs.hasChangesets }}
16+
steps:
17+
- uses: actions/checkout@v4
18+
19+
- uses: actions/setup-node@v4
20+
with:
21+
node-version: 22
22+
cache: 'npm'
23+
24+
- run: npm i
25+
26+
- name: Create Release Pull Request
27+
id: changesets
28+
uses: changesets/action@v1
29+
env:
30+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
31+
32+
release:
33+
needs: create_pr
34+
if: needs.create_pr.outputs.hasChangesets == 'false'
35+
runs-on: ubuntu-latest
36+
environment: deploy
37+
steps:
38+
- uses: actions/checkout@v4
39+
40+
- uses: actions/setup-node@v4
41+
with:
42+
node-version: 22
43+
cache: 'npm'
44+
45+
- run: npm i
46+
47+
- name: Release
48+
run: npm run release
49+
env:
50+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

0 commit comments

Comments
 (0)