Skip to content

Commit

Permalink
update dependencies and version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
cupcakearmy committed Apr 19, 2022
1 parent e93640b commit 63713fa
Show file tree
Hide file tree
Showing 5 changed files with 1,244 additions and 3,239 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -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/[email protected]
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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/),
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

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "Ora",
"version": "0.8.1",
"version": "0.8.2",

"description": "See how much time you spend on each website and set limits",
"icons": {
Expand Down
31 changes: 16 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,8 @@
"clean": "rm -rf dist .parcel-cache web-ext-artifacts ora.zip",
"dev": "parcel watch --target dev --no-hmr ./manifest.json",
"build": "parcel build --target prod ./manifest.json",
"dist": "run-s clean build pack:*",
"pack:zip": "zip -r ./ora.zip dist/prod/*",
"pack:ff": "web-ext build -s dist/prod --overwrite-dest"
"pack": "web-ext build -s dist/prod --overwrite-dest",
"dist": "run-s clean build pack"
},
"targets": {
"dev": {
Expand All @@ -26,28 +25,30 @@
"prod": {}
},
"dependencies": {
"d3": "^7",
"dayjs": "^1.10.7",
"dexie": "^3.2.0",
"d3": "^7.4.4",
"dayjs": "^1.11.1",
"dexie": "^3.2.1",
"dexie-export-import": "^1.0.3",
"faker": "5.5.2",
"file-saver": "^2.0.5",
"joi": "^17.4.2",
"joi": "^17.6.0",
"lodash": "^4.17.21",
"pretty-bytes": "^5.6.0",
"spectre.css": "^0.5.9",
"svelte-spa-router": "^3.2.0",
"tailwindcss": "^2",
"webextension-polyfill": "^0.8.0"
"tailwindcss": "^2.2.19",
"webextension-polyfill": "^0.9.0"
},
"devDependencies": {
"@parcel/config-webextension": "^2.0.1",
"@parcel/core": "^2.0.1",
"@types/lodash": "^4.14.177",
"@parcel/config-webextension": "^2.4.1",
"@parcel/core": "^2.4.1",
"@types/lodash": "^4.14.182",
"buffer": "^6.0.3",
"npm-run-all": "^4.1.5",
"parcel": "^2.0.1",
"parcel": "^2.4.1",
"parcel-transformer-svelte": "^1.2.3",
"svelte": "^3.44.2",
"web-ext": "^6.5.0"
"process": "^0.11.10",
"svelte": "^3.47.0",
"web-ext": "^6.8.0"
}
}
Loading

0 comments on commit 63713fa

Please sign in to comment.