Skip to content

Commit

Permalink
build(npm): updates external dependencies
Browse files Browse the repository at this point in the history
Up'em just updated these outdated dependencies in package.json:

c8                     9.1.0     -> 10.1.2   devDependencies   (policy: latest)
dependency-cruiser     16.2.3    -> 16.3.6   devDependencies   (policy: latest)
eslint-plugin-promise  6.1.1     -> 6.4.0    devDependencies   (policy: latest)
mscgenjs               7.0.0     -> 7.0.2    dependencies      (policy: latest)
mscgenjs-inpage        4.0.5     -> 5.0.0    dependencies      (policy: latest)
sass                   1.71.1    -> 1.77.8   devDependencies   (policy: latest)
upem                   9.0.3     -> 9.0.4    devDependencies   (policy: latest)
webpack                5.90.3    -> 5.93.0   devDependencies   (policy: latest)

Up'em found these packages were outdated, but did not update them because of policies:

codemirror             5.65.16  dependencies      (policy: wanted)
eslint                 8.57.0   devDependencies   (policy: wanted)
query-string           7.1.3    dependencies      (policy: wanted)
  • Loading branch information
sverweij committed Jul 14, 2024
1 parent e5f2594 commit e15139c
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 30 deletions.
4 changes: 2 additions & 2 deletions .dependency-cruiser.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
"comment": "Don't allow dependencies from outside the test folder to test",
"severity": "error",
"from": {
"pathNot": "^test"
"pathNot": "^src/script/test"
},
"to": {
"path": "^test"
"path": "^src/script/test"
}
},
{
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
fail-fast: true
matrix:
node-version:
- 20.x
- 22.x
platform:
- ubuntu-latest

Expand Down
45 changes: 18 additions & 27 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,24 +29,24 @@
},
"dependencies": {
"codemirror": "^5.65.8",
"mscgenjs": "7.0.0",
"mscgenjs-inpage": "4.0.5",
"mscgenjs": "7.0.2",
"mscgenjs-inpage": "5.0.0",
"query-string": "^7.1.1"
},
"devDependencies": {
"c8": "9.1.0",
"dependency-cruiser": "16.2.3",
"eslint": "8.57.0",
"c8": "10.1.2",
"dependency-cruiser": "16.3.6",
"eslint": "^8.57.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-promise": "6.4.0",
"node-localstorage": "3.0.5",
"npm-run-all": "4.1.5",
"sass": "1.71.1",
"sass": "1.77.8",
"sw-precache": "5.2.1",
"upem": "9.0.3",
"webpack": "5.90.3",
"upem": "9.0.4",
"webpack": "5.93.0",
"webpack-cli": "5.1.4"
},
"upem": {
Expand All @@ -60,6 +60,11 @@
"package": "query-string",
"policy": "wanted",
"because": "query-string > 7 are ESM and we aren't yet"
},
{
"package": "eslint",
"policy": "wanted",
"because": "the eslint ecosystem hasn't moved on to 9 yet, so we wait as well"
}
]
},
Expand Down Expand Up @@ -106,23 +111,9 @@
"/utl",
"wikum"
],
"nyc": {
"statements": 99,
"branches": 65,
"functions": 99,
"lines": 99,
"exclude": [
"build",
"coverage",
"src/script/test/**/*",
"webpack.config.js"
],
"reporter": [
"text-summary",
"html",
"lcov"
],
"all": false
"overrides": {
"got": "^11.8.5",
"trim-newlines": "^3.0.1"
},
"private": true
}
}

0 comments on commit e15139c

Please sign in to comment.