This commit is contained in:
lesion 2023-01-10 18:07:56 +01:00
parent 8b9a07c4e9
commit 2a59e45a3c
No known key found for this signature in database
GPG key ID: 352918250B012177
2 changed files with 3 additions and 4 deletions

View file

@ -6,7 +6,6 @@ All notable changes to this project will be documented in this file.
- fix refresh collections, fix #219
- add russian translation (thanks @drunkod)
- refactor search / filter / selection fix #225, 227, #224
- add nodejs v18 compatibility
### 1.6.1 - 15 dec '22
- allow edit tags in admin panel, fix #170

View file

@ -4,9 +4,9 @@
"description": "A shared agenda for local communities",
"author": "lesion",
"scripts": {
"build": "export NODE_OPTIONS=--openssl-legacy-provider; nuxt build --modern",
"build": "nuxt build --modern",
"start:inspect": "NODE_ENV=production node --inspect node_modules/.bin/nuxt start --modern",
"dev": "export NODE_OPTIONS=--openssl-legacy-provider; nuxt dev",
"dev": "nuxt dev",
"test-sqlite": "export NODE_ENV=test; export DB=sqlite; jest --testEnvironment=jest-environment-node --bail=1",
"test-mariadb": "export NODE_ENV=test; export DB=mariadb; jest --testEnvironment=jest-environment-node --bail=1",
"test-postgresql": "export NODE_ENV=test; export DB=postgresql; jest --testEnvironment=jest-environment-node --bail=1",
@ -31,7 +31,7 @@
"yarn.lock"
],
"engines": {
"node": ">=14 <=18"
"node": ">=14 <=16"
},
"dependencies": {
"@mdi/js": "^7.1.96",