Skip to content

Commit

Permalink
Update karma to version that's compatible with Node 18, and a few oth…
Browse files Browse the repository at this point in the history
…er karma-related packages
  • Loading branch information
karlbecker committed Sep 12, 2023
1 parent 60086f7 commit e46828a
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 5 deletions.
22 changes: 22 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"workbench.colorCustomizations": {
"activityBar.activeBackground": "#1f6fd0",
"activityBar.background": "#1f6fd0",
"activityBar.foreground": "#e7e7e7",
"activityBar.inactiveForeground": "#e7e7e799",
"activityBarBadge.background": "#ee90bb",
"activityBarBadge.foreground": "#15202b",
"commandCenter.border": "#e7e7e799",
"sash.hoverBorder": "#1f6fd0",
"statusBar.background": "#1857a4",
"statusBar.foreground": "#e7e7e7",
"statusBarItem.hoverBackground": "#1f6fd0",
"statusBarItem.remoteBackground": "#1857a4",
"statusBarItem.remoteForeground": "#e7e7e7",
"tab.activeBorder": "#1f6fd0",
"titleBar.activeBackground": "#1857a4",
"titleBar.activeForeground": "#e7e7e7",
"titleBar.inactiveBackground": "#1857a499",
"titleBar.inactiveForeground": "#e7e7e799"
}
}
1 change: 1 addition & 0 deletions karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ module.exports = function(config) {
frameworks: ['jasmine'],

// list of files / patterns to load in the browser
// More info here: https://karma-runner.github.io/6.4/config/files.html
files: [
'node_modules/jquery/dist/jquery.js',
'node_modules/angular/angular.js',
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"version": "1.8.3",
"description": "Primo, Summon, and 360 Core adapter to augment journal results with custom BrowZine API data.",
"engines": {
"node": "16.16.0",
"npm": "8.11.0"
"node": "18.16.0",
"npm": "9.5.1"
},
"scripts": {
"server": "http-server --cors -p 8080",
Expand Down Expand Up @@ -34,10 +34,10 @@
"jasmine-ajax": "^3.3.1",
"jasmine-core": "2.8.0",
"jquery": "^3.3.1",
"karma": "1.7.1",
"karma-jasmine": "1.1.0",
"karma": "6.4.2",
"karma-jasmine": "5.1.0",
"karma-mocha-reporter": "^2.2.4",
"karma-chrome-launcher": "2.2.0",
"karma-chrome-launcher": "3.2.0",
"ngrok": "^2.2.21",
"recursive-replace": "^1.0.1"
}
Expand Down

0 comments on commit e46828a

Please sign in to comment.