Skip to content

Commit

Permalink
Merge pull request #360 from MurhafSousli/release/11.1.0
Browse files Browse the repository at this point in the history
Release/11.1.0
  • Loading branch information
MurhafSousli authored Jun 26, 2023
2 parents ace9fcb + c1758e6 commit 12212d1
Show file tree
Hide file tree
Showing 28 changed files with 5,590 additions and 18,065 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 11.1.0

- feat: Migrate to Angular standalone components in [1a6f780](https://github.com/MurhafSousli/ngx-progressbar/pull/360/commits/1a6f780c2796b5762c47bd25f38079f613783dfe).
- refactor: Update rxjs imports in [6f426b1](https://github.com/MurhafSousli/ngx-progressbar/pull/360/commits/6f426b165187a5791da13f823903eff9fa91f409).

## 11.0.0

- Update to Angular 16 in [5f05486](https://github.com/MurhafSousli/ngx-progressbar/pull/357/commits/5f054867396415c5490592bf6a3d13d68d1aa62e).
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2016-2022 Murhaf Sousli
Copyright (c) 2016-2023 Murhaf Sousli

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
19 changes: 11 additions & 8 deletions karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,19 @@ module.exports = function (config) {
require('karma-jasmine'),
require('karma-chrome-launcher'),
require('karma-jasmine-html-reporter'),
require('karma-coverage'),
require('@angular-devkit/build-angular/plugins/karma')
],
client: {
jasmine: {
// you can add configuration options for Jasmine here
// the possible options are listed at https://jasmine.github.io/api/edge/Configuration.html
// for example, you can disable the random execution with `random: false`
// or set a specific seed with `seed: 4321`
},
clearContext: false // leave Jasmine Spec Runner output visible in browser
},
coverageIstanbulReporter: {
dir: require('path').join(__dirname, './coverage/ngx-progressbar'),
reports: ['html', 'lcovonly', 'text-summary'],
fixWebpackSourcePaths: true
jasmineHtmlReporter: {
suppressAll: true // removes the duplicated traces
},
reporters: ['progress', 'kjhtml'],
port: 9876,
Expand All @@ -36,9 +39,9 @@ module.exports = function (config) {
restartOnFileChange: true,
capabilities: {
chromeOptions: {
args: [ "--headless" ]
args: ["--headless"]
},
'browserName': 'chrome'
}
browserName: 'chrome'
},
});
};
Loading

0 comments on commit 12212d1

Please sign in to comment.