Skip to content

Commit

Permalink
Fix common package peer dependency (#328)
Browse files Browse the repository at this point in the history
* Fix common package peer dependency

* Downgrade @relate/common
  • Loading branch information
nglgzz authored Sep 1, 2021
1 parent 6f1c6d8 commit 303d003
Show file tree
Hide file tree
Showing 9 changed files with 78 additions and 105 deletions.
49 changes: 20 additions & 29 deletions packages/cli/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"@oclif/config": "1.17.0",
"@oclif/plugin-autocomplete": "0.2.0",
"@oclif/plugin-help": "3.2.0",
"@relate/common": "^1.0.3-alpha.11",
"@relate/common": "^1.0.3-alpha.10",
"@relate/types": "^1.0.3-alpha.3",
"chalk": "4.1.0",
"cli-ux": "5.5.0",
Expand All @@ -42,7 +42,7 @@
"lodash": "4.17.21",
"node-fetch": "2.6.1",
"reflect-metadata": "0.1.13",
"rxjs": "7.3.0",
"rxjs": "6.0.0",
"semver": "7.3.2",
"tslib": "1.10.0"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/src/base.command.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export default abstract class BaseCommand extends Command {
exit: this.exit,
warn: this.warn,
};
const options = IS_DEVELOPMENT_ENV ? {} : {logger: false};
const options: {logger?: false} = IS_DEVELOPMENT_ENV ? {} : {logger: false};
const {flags} = parsed;
const cliExtensions = loadExtensionsFor(EXTENSION_TYPES.CLI, flags.environment);
const systemConfig: ISystemModuleConfig = {defaultEnvironmentNameOrId: flags.environment};
Expand Down
18 changes: 9 additions & 9 deletions packages/common/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/common/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
"@nestjs/common": "^8.0.6",
"@nestjs/config": "^1.0.1",
"@nestjs/core": "^8.0.6",
"@relate/types": "1.0.3-alpha.2",
"@relate/types": "^1.0.3-alpha.2",
"graphql": "^15.0.0"
},
"dependencies": {
Expand Down
49 changes: 20 additions & 29 deletions packages/electron/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions packages/electron/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@
"@nestjs/core": "7.0.8",
"@nestjs/graphql": "7.10.6",
"@nestjs/platform-express": "7.0.8",
"@relate/common": "^1.0.3-alpha.11",
"@relate/common": "^1.0.3-alpha.10",
"@relate/types": "^1.0.3-alpha.3",
"@relate/web": "^1.0.3-alpha.10",
"@relate/web": "^1.0.3-alpha.9",
"apollo-server-express": "2.14.2",
"class-transformer": "0.3.1",
"class-validator": "0.12.1",
Expand All @@ -55,6 +55,6 @@
"lodash": "4.17.21",
"node-fetch": "2.6.1",
"reflect-metadata": "0.1.13",
"rxjs": "7.3.0"
"rxjs": "6.0.0"
}
}
Loading

0 comments on commit 303d003

Please sign in to comment.