angular-pipes
Advanced tools
Comparing version 2.0.4 to 2.0.5
SystemJS.config({ | ||
baseURL: "/", | ||
paths: { | ||
"github:*": "jspm_packages/github/*", | ||
"npm:*": "jspm_packages/npm/*", | ||
"app": "src" | ||
"app": "src", | ||
"github:": "jspm_packages/github/", | ||
"npm:": "jspm_packages/npm/" | ||
}, | ||
map: { | ||
"@angular/testing": "jspm_packages/npm/@angular/core@2.0.0-rc.1/testing.js" | ||
"@angular/testing": "jspm_packages/npm/@angular/core@2.0.0-rc.2/testing.js" | ||
} | ||
}); |
SystemJS.config({ | ||
devConfig: { | ||
"map": { | ||
"@angular/core": "npm:@angular/core@2.0.0-rc.2", | ||
"es6-shim": "github:es-shims/es6-shim@0.35.0", | ||
"os": "github:jspm/nodelibs-os@0.2.0-alpha", | ||
"plugin-typescript": "github:frankwallis/plugin-typescript@4.0.9", | ||
"process": "github:jspm/nodelibs-process@0.2.0-alpha", | ||
"reflect-metadata": "npm:reflect-metadata@0.1.3", | ||
"rxjs": "npm:rxjs@5.0.0-beta.6", | ||
"zone.js": "npm:zone.js@0.6.12" | ||
}, | ||
"packages": { | ||
"github:frankwallis/plugin-typescript@4.0.9": { | ||
"map": { | ||
"typescript": "npm:typescript@1.8.10" | ||
} | ||
}, | ||
"github:jspm/nodelibs-os@0.2.0-alpha": { | ||
"map": { | ||
"os-browserify": "npm:os-browserify@0.2.1" | ||
} | ||
} | ||
} | ||
}, | ||
transpiler: "plugin-typescript", | ||
@@ -20,24 +44,4 @@ typescriptOptions: { | ||
], | ||
map: { | ||
"@angular/core": "npm:@angular/core@2.0.0-rc.1", | ||
"es6-shim": "github:es-shims/es6-shim@0.35.0", | ||
"os": "github:jspm/nodelibs-os@0.2.0-alpha", | ||
"plugin-typescript": "github:frankwallis/plugin-typescript@4.0.9", | ||
"process": "github:jspm/nodelibs-process@0.2.0-alpha", | ||
"reflect-metadata": "npm:reflect-metadata@0.1.3", | ||
"rxjs": "npm:rxjs@5.0.0-beta.6", | ||
"zone.js": "npm:zone.js@0.6.12" | ||
}, | ||
packages: { | ||
"github:frankwallis/plugin-typescript@4.0.9": { | ||
"map": { | ||
"typescript": "npm:typescript@1.8.10" | ||
} | ||
}, | ||
"github:jspm/nodelibs-os@0.2.0-alpha": { | ||
"map": { | ||
"os-browserify": "npm:os-browserify@0.2.1" | ||
} | ||
} | ||
} | ||
map: {}, | ||
packages: {} | ||
}); |
{ | ||
"name": "angular-pipes", | ||
"version": "2.0.4", | ||
"version": "2.0.5", | ||
"description": "Angular 2 pipes library", | ||
@@ -32,3 +32,3 @@ "main": "pipes/index.js", | ||
"devDependencies": { | ||
"@angular/core": "^2.0.0-rc.1", | ||
"@angular/core": "^2.0.0-rc.2", | ||
"es6-shim": "^0.35.0", | ||
@@ -57,3 +57,3 @@ "gulp": "^3.9.1", | ||
"devDependencies": { | ||
"@angular/core": "npm:@angular/core@^2.0.0-rc.1", | ||
"@angular/core": "npm:@angular/core@^2.0.0-rc.2", | ||
"reflect-metadata": "npm:reflect-metadata@^0.1.3", | ||
@@ -68,2 +68,12 @@ "es6-shim": "github:es-shims/es6-shim@^0.35.0", | ||
"overrides": { | ||
"npm:@angular/core@2.0.0-rc.2": { | ||
"meta": { | ||
"src/*.js": { | ||
"deps": [ | ||
"reflect-metadata", | ||
"zone.js" | ||
] | ||
} | ||
} | ||
}, | ||
"npm:reflect-metadata@0.1.3": { | ||
@@ -91,3 +101,2 @@ "jspmNodeConversion": false, | ||
} | ||
} | ||
} |
330078
5946