Skip to content

Commit

Permalink
Update to Angular 14 (#203)
Browse files Browse the repository at this point in the history
  • Loading branch information
jkubiszewski authored Sep 18, 2022
1 parent 93d08f2 commit dfbb0f9
Show file tree
Hide file tree
Showing 24 changed files with 18,637 additions and 5,141 deletions.
1 change: 0 additions & 1 deletion .browserslistrc
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,3 @@ last 2 Edge major versions
last 2 Safari major versions
last 2 iOS major versions
Firefox ESR
not IE 11 # Angular supports IE 11 only as an opt-in. To opt-in, remove the 'not' prefix on this line.
5 changes: 3 additions & 2 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,9 @@
}
}
},
"defaultProject": "application",
"cli": {
"defaultCollection": "@angular-eslint/schematics"
"schematicCollections": [
"@angular-eslint/schematics"
]
}
}
6 changes: 2 additions & 4 deletions karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,21 +30,19 @@ module.exports = function (config) {
flags: ['--no-sandbox']
}
},

coverageReporter: {
dir: require('path').join(__dirname, './coverage/ngx-permissions'),
subdir: '.',
reporters: [
{ type: 'lcov' },

{ type: 'lcov' }
]
},
reporters: ['progress', 'kjhtml'],
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
autoWatch: true,
browsers: ['Chrome', 'ChromeHeadless', 'ChromeHeadlessNoSandbox'],
browsers: ['Chrome', 'ChromeHeadless', 'ChromeHeadlessNoSandbox'],
singleRun: false,
restartOnFileChange: true
});
Expand Down
Loading

0 comments on commit dfbb0f9

Please sign in to comment.