mirror of
https://github.com/ivuorinen/generic-landing-page.git
synced 2026-01-26 03:33:59 +00:00
chore(deps): update node to >=20, update packages
This commit is contained in:
@@ -17,28 +17,5 @@ tab_width = 4
|
|||||||
[{*.sass,*.scss}]
|
[{*.sass,*.scss}]
|
||||||
tab_width = 4
|
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]
|
[*.md,.github/workflows/*.yml]
|
||||||
max_line_length = 300
|
max_line_length = 300
|
||||||
|
|||||||
@@ -1,5 +1,3 @@
|
|||||||
{
|
{
|
||||||
"extends": [
|
"extends": ["@ivuorinen/eslint-config"]
|
||||||
"@ivuorinen/eslint-config"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
|||||||
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
@@ -16,7 +16,7 @@ jobs:
|
|||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
node-version: [18.x]
|
node-version: [20.x]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
|||||||
2
.github/workflows/npm.yml
vendored
2
.github/workflows/npm.yml
vendored
@@ -12,7 +12,7 @@ jobs:
|
|||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
node-version: [18.x]
|
node-version: [20.x]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
|||||||
@@ -1,5 +1,3 @@
|
|||||||
{
|
{
|
||||||
"extends": [
|
"extends": ["@ivuorinen/stylelint-config/scss"]
|
||||||
"@ivuorinen/stylelint-config/css"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
|||||||
3667
package-lock.json
generated
3667
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -5,10 +5,12 @@
|
|||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "npx mix build",
|
"build": "npx mix build",
|
||||||
"dev": "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": {
|
"engines": {
|
||||||
"node": ">=18"
|
"node": ">=20"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<!DOCTYPE html>
|
<!doctype html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<title>hi there!</title>
|
<title>hi there!</title>
|
||||||
|
|||||||
Reference in New Issue
Block a user