Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version 0.10 #20

Merged
merged 4 commits into from
Nov 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .eslintrc.js → .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ module.exports = {
"**.js",
],
rules: {
"prettier/prettier": "warn"
"prettier/prettier": ["error", {"trailingComma": "es5"}],
}
};
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup PNPM
uses: pnpm/action-setup@v2
uses: pnpm/action-setup@v3
with:
version: 8
version: 9

- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
cache: 'pnpm'

- name: Install dependencies
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup PNPM
uses: pnpm/action-setup@v2
uses: pnpm/action-setup@v3
with:
version: 8
version: 9

- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
cache: 'pnpm'

- name: Install dependencies
Expand Down
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
# Changelog

## 0.10.0

- Updated to pnpm version 9
- Updated node to v20
- Updated all dependencies to the latest major version.
- Updated GitHub Actions

## 0.9.0

- Added the possibility to correct the starting time
- Update to pnpm version 8
- Updated to pnpm version 8
- Updated all dependencies to the latest major version.


## 0.8.0

- Change order of history. Show the latest entries first.
Expand Down
49 changes: 25 additions & 24 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
{
"name": "@pitgrap/time-tracking-app",
"version": "0.9.0",
"version": "0.10.0",
"homepage": "https://pitgrap.github.io/time-tracking-app/",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"start": "vite",
"build": "vite build",
Expand All @@ -12,34 +13,34 @@
"deploy": "pnpm build && gh-pages -d dist"
},
"engines": {
"pnpm": "8",
"node": "18"
"pnpm": "9",
"node": "20"
},
"dependencies": {
"i18next": "^22.4.14",
"i18next-browser-languagedetector": "^7.0.1",
"react": "^18.2.0",
"i18next": "^23.16.8",
"i18next-browser-languagedetector": "^8.0.0",
"react": "^18.3.1",
"react-csv": "^2.2.2",
"react-dom": "^18.2.0",
"react-i18next": "^12.2.0",
"react-time-picker": "^6.0.4"
"react-dom": "^18.3.1",
"react-i18next": "^15.1.1",
"react-time-picker": "^7.0.0"
},
"devDependencies": {
"@types/node": "^18.15.11",
"@types/react": "^18.0.35",
"@types/react-csv": "^1.1.3",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"@vitejs/plugin-react": "^3.1.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"gh-pages": "^5.0.0",
"prettier": "^2.8.7",
"typescript": "^4.9.5",
"vite": "^4.5.3"
"@types/node": "^22.9.1",
"@types/react": "^18.3.12",
"@types/react-csv": "^1.1.10",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"@vitejs/plugin-react": "^4.3.3",
"eslint": "^8.57.1",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"gh-pages": "^6.2.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"vite": "^5.4.11"
},
"browserslist": [
"last 1 chrome version",
Expand Down
Loading