Skip to content

Commit

Permalink
remove depreciated standard-version
Browse files Browse the repository at this point in the history
  • Loading branch information
phcreery committed Jun 18, 2023
1 parent ae411eb commit c6e493e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 15 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ jobs:

# This step usually is not needed because the /ui/dist is pregenerated locally
# but its here to ensure that each release embeds the latest admin ui artifacts.
# If the artificats differs, a "dirty error" is thrown - https://goreleaser.com/errors/dirty/
# If the artifacts differs, a "dirty error" is thrown - https://goreleaser.com/errors/dirty/
- name: Build Admin dashboard UI
run: npm ci && npm run build:client:dev
run: npm run build:client:pro

# The prebuilt golangci-lint doesn't support go 1.18+ yet
# https://github.com/golangci/golangci-lint/issues/2649
Expand All @@ -43,6 +43,6 @@ jobs:
with:
distribution: goreleaser
version: latest
args: release --rm-dist --snapshot
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@

# partman

Personal electronic part database manager
Personal electronic part database manager in a single binary

## About

> **Warning**
> This is very early in development. I am dogfooding it with my own data though.
> I do not have a lot of time to put a whole lot of effort in this project. With that said, contributions are welcome.
> Contributions are welcome.
Automatically organize, track, and inventory all your electronic components.

Expand Down
12 changes: 2 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@
"build:client:pro": "vue-tsc --noEmit && vite build --mode production",
"build:server": "cross-env CGO_ENABLED=0 go build",
"build:server:all": "goreleaser release --clean --snapshot",
"release:build": "vue-tsc --noEmit && vite build --mode production && goreleaser release --clean --snapshot",
"release:publish": "standard-version",
"build:all": "vue-tsc --noEmit && vite build --mode production && goreleaser release --clean",
"commit": "git pull && git add -A && git-cz && git push --follow-tags"
},
"dependencies": {
Expand Down Expand Up @@ -70,7 +69,6 @@
"prettier": "^2.6.2",
"rollup-plugin-visualizer": "^5.5.4",
"sass": "^1.49.7",
"standard-version": "^9.5.0",
"stylelint": "^14.8.5",
"stylelint-config-html": "^1.0.0",
"stylelint-config-prettier": "^9.0.3",
Expand All @@ -93,11 +91,5 @@
"vue-tsc": "^1.0.9",
"zip-build": "^1.7.0"
},
"config": {},
"standard-version": {
"scripts": {
"prerelease": "git add .",
"release": "standard-version -a"
}
}
"config": {}
}

0 comments on commit c6e493e

Please sign in to comment.