Skip to content

Commit

Permalink
Update package
Browse files Browse the repository at this point in the history
  • Loading branch information
hantang committed Oct 27, 2024
1 parent 90ae248 commit 5fb2deb
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ jobs:
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
release/bookmark_search-*
release/*.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Upload built artifact
uses: actions/upload-artifact@v4
with:
path: release/bookmark_search-*
path: release/*.zip
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,7 @@ release/
# more
temp/
todo/

/site
/out
/dist
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ Search your bookmarks in a more flexible way.

## Changelog

- :tada: Add `pintree` page, forked from [Pintree-io/pintree](https://github.com/Pintree-io/pintree): change [json file](./src/json/pintree.json) before deploy.
- :rocket: Add `dupes` page, forked from [vaeth/bookmarkdupes](https://github.com/vaeth/bookmarkdupes): only from extension version.
- :tada: Add `pintree` page, forked from [Pintree-io/pintree](https://github.com/Pintree-io/pintree): change [json file](./src/json/pintree.json) before deploy. `MIT license`
- :rocket: Add `dupes` page, forked from [vaeth/bookmarkdupes](https://github.com/vaeth/bookmarkdupes): only from extension version. `GNU Public License 2.0`

## TODO

Expand Down
15 changes: 9 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,29 @@
{
"name": "bookmark-search",
"name": "search-bookmark",
"version": "0.4.2",
"description": "HTML Bookmark Search with RegExp",
"main": "main.js",
"keywords": [
"bookmarks",
"bookmark-manage",
"chrome-extension"
],
"scripts": {
"build": "web-ext build --source-dir src -a release"
"release": "web-ext build --source-dir src -a release",
"bookmark": "zip -r ./dist/search-bookmark.zip ./src",
"build": "npm run release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hantang/bookmark-search.git"
"url": "git+https://github.com/hantang/search-bookmark.git"
},
"author": "hantang",
"license": "MIT",
"bugs": {
"url": "https://github.com/hantang/bookmark-search/issues"
"url": "https://github.com/hantang/search-bookmark/issues"
},
"homepage": "https://github.com/hantang/bookmark-search#readme",
"homepage": "https://github.com/hantang/search-bookmark#readme",
"dependencies": {
"web-ext": "^7.11.0"
"web-ext": "^8.3.0"
}
}

0 comments on commit 5fb2deb

Please sign in to comment.