-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: fixing semantic-release; Merging changes from my other repo
- Loading branch information
1 parent
f3425c0
commit a7843f8
Showing
5 changed files
with
86 additions
and
195 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env sh | ||
. "$(dirname -- "$0")/_/husky.sh" | ||
|
||
exec < /dev/tty && npx cz --hook || true | ||
test -t 1 && exec < /dev/tty && npx cz --hook || true |
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 |
---|---|---|
|
@@ -4,9 +4,10 @@ | |
"version": "1.1.3", | ||
"fwVersion": "1.0.9beta", | ||
"description": "Bazecor desktop app", | ||
"private": true, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/Dygmalab/Bazecor" | ||
"url": "https://github.com/javierguzman/BazecorBlacksmith" | ||
}, | ||
"main": ".webpack/main", | ||
"scripts": { | ||
|
@@ -17,7 +18,6 @@ | |
"make-win": "electron-forge make --platform win32", | ||
"make-mac": "electron-forge make --platform darwin", | ||
"make-lin": "electron-forge make --platform linux", | ||
"publish": "electron-forge publish", | ||
"lint": "eslint --ext .ts,.tsx,.js,.jsx .", | ||
"prettier": "prettier --write \"./**/*.{js,json,css,scss,md}\"", | ||
"test": "vitest run", | ||
|
@@ -35,7 +35,7 @@ | |
"name": "Dygma Lab S.L.", | ||
"email": "[email protected]" | ||
}, | ||
"homepage": "https://github.com/Dygmalab/Bazecor", | ||
"homepage": "https://github.com/javierguzman/BazecorBlacksmith", | ||
"engines": { | ||
"node": "^18.16.0", | ||
"npm": ">=8.11.0" | ||
|
@@ -55,10 +55,14 @@ | |
"@electron-forge/maker-dmg": "^6.2.1", | ||
"@electron-forge/maker-rpm": "^6.1.1", | ||
"@electron-forge/maker-squirrel": "^6.1.1", | ||
"@electron-forge/maker-zip": "^6.1.1", | ||
"@electron-forge/plugin-webpack": "^6.1.1", | ||
"@electron-forge/publisher-github": "^6.2.1", | ||
"@reforged/maker-appimage": "^3.2.1", | ||
"@semantic-release/changelog": "^6.0.3", | ||
"@semantic-release/commit-analyzer": "^10.0.1", | ||
"@semantic-release/git": "^10.0.1", | ||
"@semantic-release/github": "^9.0.3", | ||
"@semantic-release/npm": "^10.0.4", | ||
"@semantic-release/release-notes-generator": "^11.0.3", | ||
"@types/react": "^18.2.8", | ||
"@types/react-dom": "^18.2.4", | ||
"@types/styled-components": "^5.1.26", | ||
|
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
module.exports = { | ||
branches: ["main"], | ||
plugins: [ | ||
"@semantic-release/commit-analyzer", | ||
"@semantic-release/release-notes-generator", | ||
"@semantic-release/changelog", | ||
"@semantic-release/npm", | ||
"@semantic-release/git", | ||
[ | ||
"@semantic-release/github", | ||
{ | ||
assets: [{ path: "dist/*.exe" }, { path: "dist/*.dmg" }, { path: "dist/*.AppImage" }], | ||
}, | ||
], | ||
], | ||
}; |
Oops, something went wrong.