@ngrx/router-store
Advanced tools
Comparing version 1.2.1 to 1.2.2
@@ -1,3 +0,3 @@ | ||
export { go, replace, search, back, forward, show, routerActions } from './actions'; | ||
export { routerReducer, RouterState } from './reducer'; | ||
export { RouterStoreModule } from './router-store-module'; | ||
export * from './src/actions'; | ||
export * from './src/reducer'; | ||
export * from './src/router-store-module'; |
17
index.js
@@ -1,13 +0,4 @@ | ||
"use strict"; | ||
var actions_1 = require('./actions'); | ||
exports.go = actions_1.go; | ||
exports.replace = actions_1.replace; | ||
exports.search = actions_1.search; | ||
exports.back = actions_1.back; | ||
exports.forward = actions_1.forward; | ||
exports.show = actions_1.show; | ||
exports.routerActions = actions_1.routerActions; | ||
var reducer_1 = require('./reducer'); | ||
exports.routerReducer = reducer_1.routerReducer; | ||
var router_store_module_1 = require('./router-store-module'); | ||
exports.RouterStoreModule = router_store_module_1.RouterStoreModule; | ||
export * from './src/actions'; | ||
export * from './src/reducer'; | ||
export * from './src/router-store-module'; | ||
//# sourceMappingURL=index.js.map |
@@ -1,1 +0,1 @@ | ||
{"__symbolic":"module","version":1,"metadata":{},"exports":[{"from":"./actions","export":["go","replace","search","back","forward","show","routerActions"]},{"from":"./reducer","export":["routerReducer","RouterState"]},{"from":"./router-store-module","export":["RouterStoreModule"]}]} | ||
{"__symbolic":"module","version":1,"metadata":{},"exports":[{"from":"./src/actions"},{"from":"./src/reducer"},{"from":"./src/router-store-module"}]} |
{ | ||
"name": "@ngrx/router-store", | ||
"version": "1.2.1", | ||
"description": "Bindings to connect ngrx/router to ngrx/store", | ||
"main": "index.js", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/ngrx/router-store.git" | ||
}, | ||
"version": "1.2.2", | ||
"description": "Bindings to connect angular/router to ngrx/store", | ||
"main": "bundles/router-store.umd.js", | ||
"module": "index.js", | ||
"scripts": { | ||
"lint": "npm-run-all lint:*", | ||
"lint:lib": "tslint lib/**.ts", | ||
"lint:spec": "tslint spec/**.ts", | ||
"clean": "npm-run-all clean:*", | ||
"clean:release": "rm -rf ./release", | ||
"prebuild": "npm-run-all clean karma", | ||
"build": "npm-run-all build:cjs build:esm", | ||
"build:cjs": "ngc --p tsconfig.json", | ||
"build:esm": "ngc -p tsconfig.esm.json", | ||
"prepare": "npm-run-all prepare:*", | ||
"prepare:ts": "cp -R ./src ./release", | ||
"prepare:package": "cp ./{package.json,README.md,LICENSE} ./release", | ||
"test": "npm-run-all clean karma", | ||
"karma": "karma start --single-run", | ||
"karma:watch": "karma start", | ||
"test": "npm run karma", | ||
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0", | ||
"postbuild": "npm run prepare", | ||
"preversion": "npm run test", | ||
"clean:pre": "rimraf release", | ||
"clean:post": "rimraf src/**/*.ngfactory.ts", | ||
"copy": "cpy LICENSE package.json README.md release", | ||
"build:js": "ngc -p tsconfig.dist.json", | ||
"build:umd": "rollup -c rollup.config.js", | ||
"build:uglify": "uglifyjs -c --screw-ie8 --comments -o ./release/bundles/router-store.min.umd.js ./release/bundles/router-store.umd.js", | ||
"prebuild": "npm run test && npm run clean:pre", | ||
"postbuild": "npm run clean:post && npm run copy", | ||
"build": "npm run build:js && npm run build:umd && npm run build:uglify", | ||
"version": "npm run changelog && git add CHANGELOG.md" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/ngrx/router-store.git" | ||
}, | ||
"authors": [ | ||
@@ -38,19 +33,19 @@ "Mike Ryan", | ||
"peerDependencies": { | ||
"rxjs": "^5.0.0-beta.11", | ||
"@angular/common": "^2.0.0-rc.6", | ||
"@angular/core": "^2.0.0-rc.6", | ||
"@angular/router": "^3.0.0-rc.2", | ||
"rxjs": "^5.0.0-beta.12", | ||
"@angular/common": "^2.0.0", | ||
"@angular/core": "^2.0.0", | ||
"@angular/router": "^3.0.0", | ||
"@ngrx/core": "^1.2.0", | ||
"@ngrx/store": "^1.5.0 || ^2.0.0" | ||
}, | ||
"devDependencies": { | ||
"@angular/common": "^2.0.0-rc.6", | ||
"@angular/compiler": "^2.0.0-rc.6", | ||
"@angular/compiler-cli": "^0.6.0", | ||
"@angular/core": "^2.0.0-rc.6", | ||
"@angular/platform-browser": "^2.0.0-rc.6", | ||
"@angular/platform-browser-dynamic": "^2.0.0-rc.6", | ||
"@angular/platform-server": "^2.0.0-rc.6", | ||
"@angular/router": "^3.0.0-rc.2", | ||
"@angular/tsc-wrapped": "^0.3.0", | ||
"@ngrx/core": "^1.0.0", | ||
"@angular/common": "^2.0.0", | ||
"@angular/compiler": "^2.0.0", | ||
"@angular/compiler-cli": "^0.6.1", | ||
"@angular/core": "^2.0.0", | ||
"@angular/platform-browser": "^2.0.0", | ||
"@angular/platform-browser-dynamic": "^2.0.0", | ||
"@angular/platform-server": "^2.0.0", | ||
"@angular/router": "^3.0.0", | ||
"@ngrx/core": "^1.2.0", | ||
"@ngrx/store": "^2.0.0", | ||
@@ -62,4 +57,5 @@ "@types/jasmine": "^2.2.33", | ||
"core-js": "^2.2.2", | ||
"cpy-cli": "^1.0.1", | ||
"istanbul-instrumenter-loader": "^0.2.0", | ||
"jasmine-core": "^2.4.1", | ||
"jasmine-core": "^2.5.0", | ||
"karma": "^0.13.22", | ||
@@ -75,7 +71,10 @@ "karma-chrome-launcher": "^0.2.3", | ||
"reflect-metadata": "^0.1.3", | ||
"rxjs": "5.0.0-beta.11", | ||
"rollup": "^0.34.13", | ||
"rxjs": "^5.0.0-beta.12", | ||
"source-map-loader": "^0.1.5", | ||
"ts-loader": "^0.8.1", | ||
"tslint": "^3.6.0", | ||
"typescript": "^2.0.0", | ||
"ts-loader": "^0.8.2", | ||
"tslint": "^3.15.1", | ||
"tslint-loader": "^2.1.5", | ||
"typescript": "^2.0.2", | ||
"uglifyjs": "^2.4.10", | ||
"webpack": "^2.1.0-beta.21", | ||
@@ -82,0 +81,0 @@ "zone.js": "^0.6.17" |
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
Minified code
QualityThis package contains minified code. This may be harmless in some cases where minified code is included in packaged libraries, however packages on npm should not minify code.
Found 1 instance in 1 package
42214
6
38
24
372
2
1