Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(app-router): ability to config reset pipeline provider steps when resetting app router #637

Open
wants to merge 15 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aurelia-router",
"version": "1.7.1",
"version": "1.7.2",
"description": "A powerful client-side router.",
"keywords": [
"aurelia",
Expand Down
7 changes: 5 additions & 2 deletions dist/amd/aurelia-router.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/amd/aurelia-router.js.map

Large diffs are not rendered by default.

7 changes: 5 additions & 2 deletions dist/commonjs/aurelia-router.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/commonjs/aurelia-router.js.map

Large diffs are not rendered by default.

9 changes: 5 additions & 4 deletions dist/es2015/aurelia-router.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/es2015/aurelia-router.js.map

Large diffs are not rendered by default.

7 changes: 5 additions & 2 deletions dist/native-modules/aurelia-router.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/native-modules/aurelia-router.js.map

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [1.7.2](https://github.com/aurelia/router/compare/1.7.0...1.7.2) (2019-05-03)


### Bug Fixes

* **router:** await viewModel configureRouter ([aed5f53](https://github.com/aurelia/router/commit/aed5f53))



## [1.7.1](https://github.com/aurelia/router/compare/1.7.0...1.7.1) (2019-05-03)


Expand Down
27 changes: 24 additions & 3 deletions karma.conf.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
const path = require('path');
const { AureliaPlugin } = require('aurelia-webpack-plugin');

module.exports = function(config) {
const browsers = config.browsers;
Expand All @@ -18,7 +19,8 @@ module.exports = function(config) {
modules: ["node_modules"],
alias: {
src: path.resolve(__dirname, 'src'),
test: path.resolve(__dirname, 'test')
test: path.resolve(__dirname, 'test'),
'aurelia-router': path.resolve(__dirname, 'src/aurelia-router.ts')
}
},
devtool: browsers.includes('ChromeDebugging') ? 'eval-source-map' : 'inline-source-map',
Expand All @@ -28,9 +30,25 @@ module.exports = function(config) {
test: /\.ts$/,
loader: "ts-loader",
exclude: /node_modules/
},
{
test: /\.html$/i,
loader: 'html-loader'
}
]
}
},
plugins: [
new AureliaPlugin({
aureliaApp: undefined,
dist: 'es2015',
features: {
ie: false,
svg: false,
unparser: false,
polyfills: "esnext"
}
})
]
},
mime: {
"text/x-typescript": ["ts"]
Expand All @@ -50,6 +68,9 @@ module.exports = function(config) {
mochaReporter: {
ignoreSkipped: true
},
singleRun: false
singleRun: false,
webpackMiddleware: {
logLevel: 'silent'
},
});
};
Loading