Skip to content

Commit

Permalink
prepare for v0.6.5
Browse files Browse the repository at this point in the history
  • Loading branch information
thetnaingtn committed Dec 24, 2023
1 parent e8fa273 commit 4f42cab
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 11 deletions.
30 changes: 26 additions & 4 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
version: 1

before:
hooks:
- go mod tidy
Expand All @@ -11,22 +13,42 @@ builds:
goarch:
- amd64
- arm64
- 386
ignore:
- goos: darwin
goarch: 386
- goos: linux
goarch: 386
- goos: freebsd
goarch: 386
env:
- CGO_ENABLED=0
flags:
- -mod=readonly

release:
prerelease: auto

universal_binaries:
- replace: true

archives:
- format: tar.gz
# this name template makes the OS and Arch compatible with the results of `uname`.
name_template: >-
{{ .ProjectName }}_
{{- title .Os }}_
{{- if eq .Arch "amd64" }}x86_64
{{- else if eq .Arch "386" }}i386
{{- else }}{{ .Arch }}{{ end }}
{{- if .Arm }}v{{ .Arm }}{{ end }}
# use zip for windows archives
format_overrides:
- goos: windows
format: zip

brews:
-
name: forky
homepage: https://github.com/thetnaingtn/forky
tap:
repository:
owner: thetnaingtn
name: homebrew-tap
commit_author:
Expand Down
14 changes: 7 additions & 7 deletions npm/forky/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "forkyy",
"version": "0.6.4",
"version": "0.6.5",
"bin": "lib/index.js",
"description": "Synchronize your forks with ease",
"repository": {
Expand All @@ -25,11 +25,11 @@
"typescript": "^4.9.4"
},
"optionalDependencies": {
"forky-darwin-arm64": "0.6.4",
"forky-darwin-amd64": "0.6.4",
"forky-linux-arm64": "0.6.4",
"forky-linux-amd64": "0.6.4",
"forky-windows-arm64": "0.6.4",
"forky-windows-amd64": "0.6.4"
"forky-darwin-arm64": "0.6.5",
"forky-darwin-amd64": "0.6.5",
"forky-linux-arm64": "0.6.5",
"forky-linux-amd64": "0.6.5",
"forky-windows-arm64": "0.6.5",
"forky-windows-amd64": "0.6.5"
}
}
12 changes: 12 additions & 0 deletions npm/forky/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"compilerOptions": {
"target": "es2016",
"module": "commonjs",
"esModuleInterop": true,
"baseUrl": "./",
"outDir": "lib",
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true
}
}

0 comments on commit 4f42cab

Please sign in to comment.