Skip to content

Commit

Permalink
update dependencies to clear github PR, update to webpack 5
Browse files Browse the repository at this point in the history
  • Loading branch information
James Criscuolo committed Mar 9, 2021
1 parent 36d92b4 commit 44f7e50
Show file tree
Hide file tree
Showing 3 changed files with 660 additions and 3,490 deletions.
7 changes: 6 additions & 1 deletion karma.conf.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ module.exports = function(config) {

// frameworks to use
// available frameworks: https://npmjs.org/browse/keyword/karma-adapter
frameworks: ['jasmine'],
frameworks: ['jasmine', 'webpack'],

// list of files / patterns to load in the browser
files: [
Expand All @@ -24,6 +24,11 @@ module.exports = function(config) {

webpack: {
devtool: 'inline-source-map',
module: { rules: [ { test: /\.m?js/,
resolve: {
fullySpecified: false
}
}]},
mode: 'production'
},

Expand Down
Loading

0 comments on commit 44f7e50

Please sign in to comment.