Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 0 additions & 12 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,15 +67,3 @@ jobs:

- name: Publish to npm
run: npm publish --provenance --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

- name: Bump version
run: |
npm version ${{ steps.version.outputs.bump }} -m "chore: bump version to %s [skip ci]"
git push --follow-tags

- name: Publish to npm
run: npm publish --provenance --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jsonq",
"version": "1.0.1",
"name": "@yesiree/jsonq",
"version": "1.0.0",
"description": "A lightweight library for querying and transforming JSON data using a simple expression syntax.",
"type": "module",
"main": "dist/index.cjs",
Expand All @@ -16,7 +16,7 @@
}
},
"bin": {
"jsonq": "./dist/cli.mjs"
"jsonq": "dist/cli.mjs"
},
"files": [
"dist"
Expand All @@ -43,6 +43,6 @@
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/trevorhreed/jsonq.git"
"url": "git+https://github.com/yesiree/jsonq.git"
}
}
Loading