Skip to content

Commit 63713fa

Browse files
committed
update dependencies and version bump
1 parent e93640b commit 63713fa

File tree

5 files changed

+1244
-3239
lines changed

5 files changed

+1244
-3239
lines changed

.github/workflows/build.yaml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Main
2+
3+
on: push
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v2
10+
- uses: actions/setup-node@v2
11+
with:
12+
node-version: "16"
13+
- run: npm -g i pnpm
14+
- run: pnpm install --frozen-lockfile
15+
- run: pnpm run dist
16+
- name: Artifacts
17+
uses: actions/upload-artifact@v2
18+
with:
19+
name: Extension
20+
path: web-ext-artifacts/*.zip
21+
- name: Sign
22+
uses: tristan-weil/[email protected]
23+
with:
24+
path: web-ext-artifacts/*.zip
25+
- name: Release
26+
uses: softprops/action-gh-release@v1
27+
if: startsWith(github.ref, 'refs/tags/')
28+
with:
29+
files: web-ext-artifacts/*.zip

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.8.2] 2022-04-19
9+
10+
### Fixed
11+
12+
- UI Bugs of banner
13+
814
## [0.8.1] 2021-11-24
915

1016
### Fixed

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"manifest_version": 2,
33
"name": "Ora",
4-
"version": "0.8.1",
4+
"version": "0.8.2",
55

66
"description": "See how much time you spend on each website and set limits",
77
"icons": {

package.json

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,8 @@
1212
"clean": "rm -rf dist .parcel-cache web-ext-artifacts ora.zip",
1313
"dev": "parcel watch --target dev --no-hmr ./manifest.json",
1414
"build": "parcel build --target prod ./manifest.json",
15-
"dist": "run-s clean build pack:*",
16-
"pack:zip": "zip -r ./ora.zip dist/prod/*",
17-
"pack:ff": "web-ext build -s dist/prod --overwrite-dest"
15+
"pack": "web-ext build -s dist/prod --overwrite-dest",
16+
"dist": "run-s clean build pack"
1817
},
1918
"targets": {
2019
"dev": {
@@ -26,28 +25,30 @@
2625
"prod": {}
2726
},
2827
"dependencies": {
29-
"d3": "^7",
30-
"dayjs": "^1.10.7",
31-
"dexie": "^3.2.0",
28+
"d3": "^7.4.4",
29+
"dayjs": "^1.11.1",
30+
"dexie": "^3.2.1",
3231
"dexie-export-import": "^1.0.3",
3332
"faker": "5.5.2",
3433
"file-saver": "^2.0.5",
35-
"joi": "^17.4.2",
34+
"joi": "^17.6.0",
3635
"lodash": "^4.17.21",
3736
"pretty-bytes": "^5.6.0",
3837
"spectre.css": "^0.5.9",
3938
"svelte-spa-router": "^3.2.0",
40-
"tailwindcss": "^2",
41-
"webextension-polyfill": "^0.8.0"
39+
"tailwindcss": "^2.2.19",
40+
"webextension-polyfill": "^0.9.0"
4241
},
4342
"devDependencies": {
44-
"@parcel/config-webextension": "^2.0.1",
45-
"@parcel/core": "^2.0.1",
46-
"@types/lodash": "^4.14.177",
43+
"@parcel/config-webextension": "^2.4.1",
44+
"@parcel/core": "^2.4.1",
45+
"@types/lodash": "^4.14.182",
46+
"buffer": "^6.0.3",
4747
"npm-run-all": "^4.1.5",
48-
"parcel": "^2.0.1",
48+
"parcel": "^2.4.1",
4949
"parcel-transformer-svelte": "^1.2.3",
50-
"svelte": "^3.44.2",
51-
"web-ext": "^6.5.0"
50+
"process": "^0.11.10",
51+
"svelte": "^3.47.0",
52+
"web-ext": "^6.8.0"
5253
}
5354
}

0 commit comments

Comments
 (0)