Skip to content

Commit

Permalink
fix(schematics): update schematics deps
Browse files Browse the repository at this point in the history
  • Loading branch information
NetanelBasal committed Oct 7, 2020
1 parent 5312441 commit 797bfa9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion libs/akita-ng-router-store/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@datorama/akita-ng-router-store",
"version": "5.1.7",
"version": "5.1.8",
"description": "Bindings to connect the Angular Router with Akita store",
"keywords": [
"angular",
Expand Down
8 changes: 4 additions & 4 deletions libs/akita-schematics/src/ng-add/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,23 +10,23 @@ function addPackageJsonDependencies(options: Schema): Rule {
const dependencies: NodeDependency[] = [
{
type: NodeDependencyType.Default,
version: '^5.0.4',
version: '^5.2.4',
name: '@datorama/akita',
},
];

if (options.withRouter || options.router) {
dependencies.push({
type: NodeDependencyType.Dev,
version: '^5.1.3',
type: NodeDependencyType.Default,
version: '^5.1.8',
name: '@datorama/akita-ng-router-store',
});
}

if (options.devtools) {
dependencies.push({
type: NodeDependencyType.Dev,
version: '^5.0.1',
version: '^5.0.3',
name: '@datorama/akita-ngdevtools',
});
}
Expand Down

0 comments on commit 797bfa9

Please sign in to comment.