Skip to content

Commit

Permalink
chore(deps): updated to node 22
Browse files Browse the repository at this point in the history
Release-as: 1.0.2
  • Loading branch information
Tbaile committed Dec 20, 2024
1 parent e9264ef commit 0cf00a9
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 20 deletions.
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20.18.0
22.12.0
2 changes: 1 addition & 1 deletion Containerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20.18.0 AS base
FROM node:22.12.0 AS base
WORKDIR /app
RUN npm config set update-notifier false

Expand Down
26 changes: 13 additions & 13 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
"@nethesis/nethesis-solid-svg-icons": "github:nethesis/Font-Awesome#ns-solid",
"@rushstack/eslint-patch": "^1.3.3",
"@tailwindcss/forms": "^0.5.6",
"@tsconfig/node18": "^18.2.2",
"@types/node": "^20.0.0",
"@tsconfig/node22": "^22.0.0",
"@types/node": "^22.0.0",
"@vitejs/plugin-vue": "^5.2.1",
"@vitejs/plugin-vue-jsx": "^4.1.1",
"@vue/eslint-config-prettier": "^10.1.0",
Expand Down
2 changes: 1 addition & 1 deletion renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"matchPackageNames": [
"node"
],
"allowedVersions": "<= 20"
"allowedVersions": "<= 22"
},
{
"excludePackageNames": [
Expand Down
3 changes: 2 additions & 1 deletion tailwind.config.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import type { Config } from 'tailwindcss'
import colors from 'tailwindcss/colors'
import defaultTheme from 'tailwindcss/defaultTheme'
import tailwindConfig from '@nethesis/vue-components/tailwind.config'

export default {
presets: [require('@nethesis/vue-components/tailwind.config.ts')],
presets: [tailwindConfig],
content: [
'./index.html',
'./src/**/*.{vue,js,ts,jsx,tsx}',
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.node.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "@tsconfig/node18/tsconfig.json",
"extends": "@tsconfig/node22/tsconfig.json",
"include": [
"vite.config.*",
"vitest.config.*",
Expand Down

0 comments on commit 0cf00a9

Please sign in to comment.