update dependencies and version bump

This commit is contained in:
cupcakearmy 2022-04-19 14:45:06 +02:00
parent e93640b943
commit 63713faa85
No known key found for this signature in database
GPG Key ID: 3235314B4D31232F
5 changed files with 1252 additions and 3247 deletions

29
.github/workflows/build.yaml vendored Normal file
View File

@ -0,0 +1,29 @@
name: Main
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: "16"
- run: npm -g i pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm run dist
- name: Artifacts
uses: actions/upload-artifact@v2
with:
name: Extension
path: web-ext-artifacts/*.zip
- name: Sign
uses: tristan-weil/ghaction-checksum-sign-artifact@v1.0.1
with:
path: web-ext-artifacts/*.zip
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: web-ext-artifacts/*.zip

View File

@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [0.8.2] 2022-04-19
### Fixed
- UI Bugs of banner
## [0.8.1] 2021-11-24 ## [0.8.1] 2021-11-24
### Fixed ### Fixed

View File

@ -1,7 +1,7 @@
{ {
"manifest_version": 2, "manifest_version": 2,
"name": "Ora", "name": "Ora",
"version": "0.8.1", "version": "0.8.2",
"description": "See how much time you spend on each website and set limits", "description": "See how much time you spend on each website and set limits",
"icons": { "icons": {

View File

@ -12,9 +12,8 @@
"clean": "rm -rf dist .parcel-cache web-ext-artifacts ora.zip", "clean": "rm -rf dist .parcel-cache web-ext-artifacts ora.zip",
"dev": "parcel watch --target dev --no-hmr ./manifest.json", "dev": "parcel watch --target dev --no-hmr ./manifest.json",
"build": "parcel build --target prod ./manifest.json", "build": "parcel build --target prod ./manifest.json",
"dist": "run-s clean build pack:*", "pack": "web-ext build -s dist/prod --overwrite-dest",
"pack:zip": "zip -r ./ora.zip dist/prod/*", "dist": "run-s clean build pack"
"pack:ff": "web-ext build -s dist/prod --overwrite-dest"
}, },
"targets": { "targets": {
"dev": { "dev": {
@ -26,28 +25,30 @@
"prod": {} "prod": {}
}, },
"dependencies": { "dependencies": {
"d3": "^7", "d3": "^7.4.4",
"dayjs": "^1.10.7", "dayjs": "^1.11.1",
"dexie": "^3.2.0", "dexie": "^3.2.1",
"dexie-export-import": "^1.0.3", "dexie-export-import": "^1.0.3",
"faker": "5.5.2", "faker": "5.5.2",
"file-saver": "^2.0.5", "file-saver": "^2.0.5",
"joi": "^17.4.2", "joi": "^17.6.0",
"lodash": "^4.17.21", "lodash": "^4.17.21",
"pretty-bytes": "^5.6.0", "pretty-bytes": "^5.6.0",
"spectre.css": "^0.5.9", "spectre.css": "^0.5.9",
"svelte-spa-router": "^3.2.0", "svelte-spa-router": "^3.2.0",
"tailwindcss": "^2", "tailwindcss": "^2.2.19",
"webextension-polyfill": "^0.8.0" "webextension-polyfill": "^0.9.0"
}, },
"devDependencies": { "devDependencies": {
"@parcel/config-webextension": "^2.0.1", "@parcel/config-webextension": "^2.4.1",
"@parcel/core": "^2.0.1", "@parcel/core": "^2.4.1",
"@types/lodash": "^4.14.177", "@types/lodash": "^4.14.182",
"buffer": "^6.0.3",
"npm-run-all": "^4.1.5", "npm-run-all": "^4.1.5",
"parcel": "^2.0.1", "parcel": "^2.4.1",
"parcel-transformer-svelte": "^1.2.3", "parcel-transformer-svelte": "^1.2.3",
"svelte": "^3.44.2", "process": "^0.11.10",
"web-ext": "^6.5.0" "svelte": "^3.47.0",
"web-ext": "^6.8.0"
} }
} }

File diff suppressed because it is too large Load Diff