Skip to content

Commit 4decd47

Browse files
committed
chore: update dependencies and release configuration
- Added `@semantic-release/git` as a dev dependency in `package.json` and `bun.lock`. - Updated `release.config.js` to include `@semantic-release/git` for asset management. - Removed outdated notes from `README.md` regarding React Native version requirements. - Added a build step in the GitHub Actions workflow for the release process.
1 parent fd9ef5d commit 4decd47

5 files changed

Lines changed: 17 additions & 11 deletions

File tree

.github/workflows/release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,10 @@ jobs:
4444
4545
- name: Install npm dependencies (bun)
4646
run: bun install
47+
48+
- name: Build lib
49+
run: bun run build
50+
4751
- name: Release
4852
env:
4953
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,6 @@ A high-performance file system module for React Native that handles file operati
1919
- React Native v0.78.0 or higher
2020
- Node 18.0.0 or higher
2121

22-
> [!IMPORTANT]
23-
> To Support `Nitro Views` you need to install React Native version v0.78.0 or higher.
24-
2522
## Installation
2623

2724
```bash

bun.lock

Lines changed: 11 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@
5252
"devDependencies": {
5353
"@jamesacarr/eslint-formatter-github-actions": "^0.2.0",
5454
"@semantic-release/changelog": "^6.0.3",
55+
"@semantic-release/git": "^10.0.1",
5556
"@types/jest": "^29.5.12",
5657
"@types/react": "^19.0.10",
5758
"conventional-changelog-conventionalcommits": "^8.0.0",

release.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,5 +47,6 @@ module.exports = {
4747
],
4848
'@semantic-release/npm',
4949
'@semantic-release/github',
50+
['@semantic-release/git', { assets: ['package.json', 'CHANGELOG.md'] }],
5051
],
5152
}

0 commit comments

Comments
 (0)