Skip to content

Commit

Permalink
build: tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
Kikobeats committed Feb 6, 2023
1 parent 074ca95 commit 6c49e0a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ jobs:
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Release
if: ${{ github.ref == 'refs/heads/master' && !startsWith(github.event.head_commit.message, 'chore(release):') && !startsWith(github.event.head_commit.message, 'docs:') }}
shell: 'script -q -e -c "bash {0}" > /dev/null'
env:
CONVENTIONAL_GITHUB_RELEASER_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "superlock",
"description": "The most simple mutex/semaphore implementation",
"homepage": "https://nicedoc.io/Kikobeats/lock",
"homepage": "https://github.com/Kikobeats/superlock",
"version": "1.0.1",
"main": "src/index.js",
"author": {
Expand All @@ -11,10 +11,10 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kikobeats/lock.git"
"url": "git+https://github.com/Kikobeats/superlock.git"
},
"bugs": {
"url": "https://github.com/Kikobeats/lock/issues"
"url": "https://github.com/Kikobeats/superlock/issues"
},
"keywords": [
"async",
Expand Down Expand Up @@ -50,7 +50,7 @@
],
"scripts": {
"clean": "rm -rf node_modules",
"contributors": "(git-authors-cli && finepack --sort-ignore-object-at ava && git add package.json && git commit -m 'build: contributors' --no-verify) || true",
"contributors": "(npx git-authors-cli && npx finepack --sort-ignore-object-at ava && git add package.json && git commit -m 'build: contributors' --no-verify) || true",
"coverage": "c8 report --reporter=text-lcov > coverage/lcov.info",
"lint": "standard",
"postrelease": "npm run release:tags && npm run release:github && (ci-publish || npm publish --access=public)",
Expand Down

0 comments on commit 6c49e0a

Please sign in to comment.