-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: use pnpm, update eslint config
- Loading branch information
1 parent
aa1422e
commit 31a625b
Showing
62 changed files
with
8,893 additions
and
10,179 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,8 +7,8 @@ | |
"app:version": "echo $npm_package_version", | ||
"dev": "vite", | ||
"build": "tsc && vite build", | ||
"build:debug": "dotenv -- yarn tauri build --debug --target universal-apple-darwin", | ||
"build:release": "dotenv -- yarn tauri build --target universal-apple-darwin", | ||
"build:debug": "dotenv -- pnpm tauri build --debug --target universal-apple-darwin", | ||
"build:release": "dotenv -- pnpm tauri build --target universal-apple-darwin", | ||
"sign": "dotenv ./bin/apple.sh", | ||
"preview": "vite preview", | ||
"tauri": "tauri", | ||
|
@@ -40,6 +40,7 @@ | |
"zustand": "^5.0.2" | ||
}, | ||
"devDependencies": { | ||
"@billyjacoby/eslint-config": "^8.57.1", | ||
"@tauri-apps/cli": "^1.6.3", | ||
"@types/node": "^22.10.2", | ||
"@types/react": "19.0.2", | ||
|
@@ -52,6 +53,7 @@ | |
"dotenv": "^16.4.7", | ||
"dotenv-cli": "^7.4.4", | ||
"eslint": "^8.56.0", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-plugin-react": "^7.37.2", | ||
"eslint-plugin-react-hooks": "^5.1.0", | ||
"eslint-plugin-unused-imports": "^4.1.4", | ||
|
@@ -63,12 +65,12 @@ | |
}, | ||
"release-it": { | ||
"hooks": { | ||
"after:bump": "yarn auto-changelog -p && VERSION=${version} LATEST_VERSION=${latestVersion} ./bin/post-bump.sh" | ||
"after:bump": "pnpm auto-changelog -p && VERSION=${version} LATEST_VERSION=${latestVersion} ./bin/post-bump.sh" | ||
}, | ||
"git": { | ||
"pushBranch": "release-v${version}", | ||
"commitMessage": "chore: release v${version}", | ||
"changelog": "yarn auto-changelog -p && git add CHANGELOG.md", | ||
"changelog": "pnpm auto-changelog -p && git add CHANGELOG.md", | ||
"tagName": "v${version}" | ||
}, | ||
"github": { | ||
|
@@ -82,6 +84,5 @@ | |
"./src-tauri/target/universal-apple-darwin/release/bundle/macos/Browsernaut.app.tar.gz" | ||
] | ||
} | ||
}, | ||
"packageManager": "[email protected]" | ||
} | ||
} |
Oops, something went wrong.