Skip to content

Commit

Permalink
chore(sample): installed aurelia-router (for breadcrumbs)
Browse files Browse the repository at this point in the history
  • Loading branch information
Thanood committed Mar 14, 2016
1 parent 2d7c31a commit fc38c0b
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
15 changes: 15 additions & 0 deletions config.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ System.config({
"aurelia-pal-browser": "npm:[email protected]",
"aurelia-path": "npm:[email protected]",
"aurelia-polyfills": "npm:[email protected]",
"aurelia-router": "npm:[email protected]",
"aurelia-task-queue": "npm:[email protected]",
"aurelia-templating": "npm:[email protected]",
"babel": "npm:[email protected]",
Expand Down Expand Up @@ -62,6 +63,9 @@ System.config({
"aurelia-metadata": "npm:[email protected]",
"aurelia-pal": "npm:[email protected]"
},
"npm:[email protected]": {
"aurelia-logging": "npm:[email protected]"
},
"npm:[email protected]": {
"aurelia-metadata": "npm:[email protected]",
"aurelia-path": "npm:[email protected]"
Expand All @@ -75,6 +79,17 @@ System.config({
"npm:[email protected]": {
"aurelia-pal": "npm:[email protected]"
},
"npm:[email protected]": {
"aurelia-path": "npm:[email protected]"
},
"npm:[email protected]": {
"aurelia-dependency-injection": "npm:[email protected]",
"aurelia-event-aggregator": "npm:[email protected]",
"aurelia-history": "npm:[email protected]",
"aurelia-logging": "npm:[email protected]",
"aurelia-path": "npm:[email protected]",
"aurelia-route-recognizer": "npm:[email protected]"
},
"npm:[email protected]": {
"aurelia-pal": "npm:[email protected]"
},
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
"aurelia-dependency-injection": "npm:aurelia-dependency-injection@^1.0.0-beta.1.1.2",
"aurelia-logging": "npm:aurelia-logging@^1.0.0-beta.1.1.1",
"aurelia-metadata": "npm:aurelia-metadata@^1.0.0-beta.1.1.3",
"aurelia-router": "npm:aurelia-router@^1.0.0-beta.1.1.3",
"aurelia-task-queue": "npm:aurelia-task-queue@^1.0.0-beta.1.1.0",
"aurelia-templating": "npm:aurelia-templating@^1.0.0-beta.1.1.0",
"materialize": "Dogfalo/materialize@^0.97.5"
Expand Down
3 changes: 1 addition & 2 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import 'materialize';
import {Aurelia} from 'aurelia-framework';
import {ConfigBuilder} from './config-builder';

export function configure(aurelia: Aurelia, configCallback?: (builder: ConfigBuilder) => void) {
export function configure(aurelia, configCallback) {
let builder = new ConfigBuilder();

if (configCallback !== undefined && typeof(configCallback) === 'function') {
Expand Down

0 comments on commit fc38c0b

Please sign in to comment.