Skip to content

Commit

Permalink
chore: code style tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
ersimont committed May 25, 2021
1 parent c2e7598 commit b298ebd
Show file tree
Hide file tree
Showing 8 changed files with 26 additions and 10 deletions.
4 changes: 3 additions & 1 deletion projects/app-state/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,7 @@
"@s-libs/micro-dash": "^12.0.0-next.1",
"@s-libs/rxjs-core": "^12.0.0-next.1"
},
"dependencies": { "tslib": "^2.1.0" }
"dependencies": {
"tslib": "^2.1.0"
}
}
8 changes: 6 additions & 2 deletions projects/js-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@
"url": "https://github.com/simontonsoftware/s-libs.git",
"directory": "projects/js-core"
},
"peerDependencies": { "@s-libs/micro-dash": "^12.0.0-next.1" },
"dependencies": { "tslib": "^2.1.0" }
"peerDependencies": {
"@s-libs/micro-dash": "^12.0.0-next.1"
},
"dependencies": {
"tslib": "^2.1.0"
}
}
5 changes: 4 additions & 1 deletion projects/micro-dash/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,8 @@
"url": "https://github.com/simontonsoftware/s-libs.git",
"directory": "projects/micro-dash"
},
"dependencies": { "tslib": "^2.1.0", "utility-types": "^3.10.0" }
"dependencies": {
"tslib": "^2.1.0",
"utility-types": "^3.10.0"
}
}
4 changes: 3 additions & 1 deletion projects/ng-app-state/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,7 @@
"@s-libs/ng-core": "^12.0.0-next.1",
"@s-libs/rxjs-core": "^12.0.0-next.1"
},
"dependencies": { "tslib": "^2.1.0" }
"dependencies": {
"tslib": "^2.1.0"
}
}
4 changes: 3 additions & 1 deletion projects/ng-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,7 @@
"@s-libs/micro-dash": "^12.0.0-next.1",
"@s-libs/rxjs-core": "^12.0.0-next.1"
},
"dependencies": { "tslib": "^2.1.0" }
"dependencies": {
"tslib": "^2.1.0"
}
}
4 changes: 3 additions & 1 deletion projects/ng-dev/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,7 @@
"@s-libs/rxjs-core": "^12.0.0-next.1",
"jasmine-core": "^3.6.0"
},
"dependencies": { "tslib": "^2.1.0" }
"dependencies": {
"tslib": "^2.1.0"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,8 @@ export function createDynamicWrapper<T>(
styles: { [klass: string]: any } = {};
}

const type = DynamicWrapperComponent;
const inputProperties = inputMetas.map((meta) => meta.property);
return { type, inputProperties };
return { type: DynamicWrapperComponent, inputProperties };
}

/** @hidden */
Expand Down
4 changes: 3 additions & 1 deletion projects/rxjs-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,7 @@
"@s-libs/micro-dash": "^12.0.0-next.1",
"rxjs": "^6.6.0"
},
"dependencies": { "tslib": "^2.1.0" }
"dependencies": {
"tslib": "^2.1.0"
}
}

0 comments on commit b298ebd

Please sign in to comment.