Skip to content

Commit 8a8e816

Browse files
authored
Merge pull request #144 from Lombiq/issue/OSOE-954-alt
OSOE-954: Update NPM dependencies to latest in Lombiq.NodeJs.Extensions
2 parents 68eb73c + 14dde77 commit 8a8e816

31 files changed

+4810
-2994
lines changed

.github/actions/lint/Invoke-NodeJsLinter.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ function Install-NodeJsPackage($LibraryPath)
1616
Copy-Item $LibraryPath/config/consumer/package.project.json package.json
1717
}
1818

19-
if (Test-NoPath -Paths .eslintrc, .eslintrc.js)
19+
if (Test-NoPath -Paths eslint.config.js, eslint.config.cjs, eslint.config.mjs)
2020
{
21-
Copy-Item $LibraryPath/config/consumer/.eslintrc.project.js .eslintrc.js
21+
Copy-Item $LibraryPath/config/consumer/.eslintrc.project.js eslint.config.cjs
2222
}
2323

2424
if (Test-NoPath -Paths .prettierrc, .prettierrc.js)

.github/workflows/lint-self.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,19 @@ on:
88
- main
99

1010
jobs:
11-
lint:
12-
name: Lint Assets
11+
lint-scripts:
12+
name: Lint Helper Scripts
1313
uses: Lombiq/NodeJs-Extensions/.github/workflows/lint.yml@dev
1414
with:
1515
scripts: '
1616
{
1717
"Lombiq.NodeJs.Extensions": { "scripts": { "source": "scripts" } }
1818
}'
19+
lint-config:
20+
name: Lint config files
21+
uses: Lombiq/NodeJs-Extensions/.github/workflows/lint.yml@dev
22+
with:
23+
scripts: '
24+
{
25+
"Lombiq.NodeJs.Extensions": { "scripts": { "source": "config" } }
26+
}'

Lombiq.NodeJs.Extensions.Samples.NuGet/.eslintrc.js

Lines changed: 0 additions & 11 deletions
This file was deleted.

Lombiq.NodeJs.Extensions.Samples.NuGet/Lombiq.NodeJs.Extensions.Samples.NuGet.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<ItemGroup>
2020
<!-- Adding Node.js Extensions as a PackageReference will result in inclusion of its .props and .targets files
2121
during Build. -->
22-
<PackageReference Include="Lombiq.NodeJs.Extensions" Version="2.2.0" />
22+
<PackageReference Include="Lombiq.NodeJs.Extensions" Version="2.2.1-alpha.0.osoe-954" />
2323
</ItemGroup>
2424

2525
</Project>

Lombiq.NodeJs.Extensions.Samples.NuGet/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
"watch": "npm explore nodejs-extensions -- pnpm watch"
66
},
77
"devDependencies": {
8-
"eslint": "8.47.0",
8+
"eslint": "9.17.0",
99
"eslint-config-airbnb-base": "15.0.0",
10-
"eslint-plugin-import": "2.28.1",
11-
"eslint-plugin-node": "11.1.0",
10+
"eslint-plugin-import": "2.31.0",
11+
"eslint-plugin-n": "14.0.0",
1212
"eslint-plugin-only-warn": "1.1.0",
13-
"eslint-plugin-promise": "6.1.1"
13+
"eslint-plugin-promise": "7.2.1"
1414
},
1515
"nodejsExtensions": {
1616
"assetsToCopy": [

Lombiq.NodeJs.Extensions.SolutionMarkdownAnalysis/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
}
1010
},
1111
"devDependencies": {
12-
"eslint": "8.47.0",
12+
"eslint": "9.37.0",
1313
"eslint-config-airbnb-base": "15.0.0",
14-
"eslint-plugin-import": "2.28.1",
14+
"eslint-plugin-import": "2.32.0",
1515
"eslint-plugin-node": "11.1.0",
1616
"eslint-plugin-only-warn": "1.1.0",
17-
"eslint-plugin-promise": "6.1.1"
17+
"eslint-plugin-promise": "7.2.1"
1818
}
1919
}

0 commit comments

Comments
 (0)