Skip to content

Commit

Permalink
- Incremented version to 1.1.3
Browse files Browse the repository at this point in the history
- Moved the script file to "build/"
- Added "pack" script
- Updated packages
  • Loading branch information
avi12 committed Jan 27, 2021
1 parent 605fa13 commit 6291c0d
Show file tree
Hide file tree
Showing 3 changed files with 729 additions and 1,118 deletions.
4 changes: 2 additions & 2 deletions src/manifest.json → dist/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "Twitch Channel Points Bonus Collector",
"short_name": "Twitch CP",
"description": "Auto-clicks the Channel Points bonus button when it appears.",
"version": "1.1.2",
"version": "1.1.3",
"icons": {
"16": "images/thin_icon-16.png",
"19": "images/thin_icon-19.png",
Expand All @@ -26,7 +26,7 @@
"https://www.twitch.tv/*"
],
"js": [
"scripts/content-script-twitch.js"
"build/content-script-twitch.js"
]
}
],
Expand Down
16 changes: 7 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,13 @@
{
"name": "twitch-cp-bonus-collector",
"description": "A browser extension that automates clicking on the Channel Points bonus button during a Twitch live stream when it appears.",
"version": "1.1.2",
"version": "1.1.3",
"devDependencies": {
"prettier": "^2.2.1",
"rollup": "^2.35.1",
"rollup-plugin-chrome-extension": "^3.5.1",
"rollup-plugin-empty-dir": "^1.0.4",
"rollup": "^2.38.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-zip": "^1.0.1",
"set-json-version": "^1.0.4",
"web-ext": "^4.3.0",
"web-ext": "^5.5.0",
"zip-self": "^0.2.5"
},
"homepage": "https://avi12.com",
Expand All @@ -29,9 +26,10 @@
"scripts": {
"dev": "rollup -c -w",
"build": "rollup -c",
"pack-self": "zip-self -o dist_packed/twitch_cp_collector-{version}-source.zip",
"build-pack": "pnpm run build && pnpm run pack-self",
"set-version": "set-json-version -f package.json dist/manifest.json src/manifest.json -v",
"pack": "web-ext build --overwrite-dest --artifacts-dir dist_packed --source-dir dist --filename twitch-cp-bonus-collector-{version}.zip",
"pack-self": "zip-self -o dist_packed/twitch-cp-bonus-collector-{version}-source.zip",
"build-pack": "pnpm run build && pnpm run pack && pnpm run pack-self",
"set-version": "set-json-version -f package.json dist/manifest.json dist/manifest.json -v",
"run-browser": "web-ext run --no-config-discovery --start-url https://www.twitch.tv/codinggarden --source-dir dist --verbose --target",
"run-firefox": "pnpm run-browser firefox-desktop",
"run-chromium": "pnpm run-browser chromium",
Expand Down
Loading

0 comments on commit 6291c0d

Please sign in to comment.