chore(deps): update node to >=20, update packages

This commit is contained in:
Ismo Vuorinen
2023-11-22 13:49:48 +02:00
parent 2e7ef21cec
commit 9589880032
10 changed files with 2186 additions and 1528 deletions

View File

@@ -17,28 +17,5 @@ tab_width = 4
[{*.sass,*.scss}]
tab_width = 4
[{*.ant,*.fxml,*.jhm,*.jnlp,*.jrxml,*.rng,*.tld,*.wsdl,*.xml,*.xsd,*.xsl,*.xslt,*.xul,phpunit.xml.dist}]
indent_size = 4
tab_width = 4
[{*.ats,*.cts,*.mts,*.ts}]
indent_size = 4
tab_width = 4
[{*.ctp,*.hphp,*.inc,*.module,*.php,*.php4,*.php5,*.phtml,application,branch-usage-checker}]
indent_size = 4
max_line_length = 110
tab_width = 4
[{*.har,*.jsb2,*.jsb3,*.json,.babelrc,.eslintrc,.prettierrc,.stylelintrc,bowerrc,composer.lock,jest.config}]
indent_size = 2
tab_width = 2
[{*.mk,GNUmakefile,makefile}]
tab_width = 4
[{*.tf,*.tfvars}]
tab_width = 4
[*.md,.github/workflows/*.yml]
max_line_length = 300

View File

@@ -1,5 +1,3 @@
{
"extends": [
"@ivuorinen/eslint-config"
]
"extends": ["@ivuorinen/eslint-config"]
}

View File

@@ -16,7 +16,7 @@ jobs:
strategy:
matrix:
node-version: [18.x]
node-version: [20.x]
steps:
- uses: actions/checkout@v3

View File

@@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
node-version: [18.x]
node-version: [20.x]
steps:
- uses: actions/checkout@v3

2
.nvmrc
View File

@@ -1 +1 @@
18
20

View File

@@ -1,5 +1,3 @@
{
"extends": [
"@ivuorinen/stylelint-config/css"
]
"extends": ["@ivuorinen/stylelint-config/scss"]
}

3667
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -5,10 +5,12 @@
"scripts": {
"build": "npx mix build",
"dev": "npx mix build",
"prod": "npx mix build -p"
"prod": "npx mix build -p",
"eslint:fix": "eslint '**/*.{js,tsx,ts}' --fix",
"eslint:report": "eslint '**/*.{js,tsx,ts}'"
},
"engines": {
"node": ">=18"
"node": ">=20"
},
"repository": {
"type": "git",

View File

@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html lang="en">
<head>
<title>hi there!</title>