Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
with
10,716 additions
and 13,762 deletions.
- +1 −1 .circleci/config.yml
- +2 −0 .eslintrc.js
- +7 −7 .markdownlint.json
- +1 −0 .yarnrc
- +24 −12 README.md
- +64 −1 examples/01-simple-model/generated/classes.ts
- +4 −28 examples/01-simple-model/package.json
- +261 −3,847 examples/01-simple-model/yarn.lock
- +27 −5 examples/02-complex-example/generated/binding.ts
- +123 −12 examples/02-complex-example/generated/classes.ts
- +26 −4 examples/02-complex-example/generated/schema.graphql
- +7 −9 examples/02-complex-example/package.json
- +16 −3 examples/02-complex-example/src/modules/user/user.model.ts
- +986 −1,127 examples/02-complex-example/yarn.lock
- +130 −4 examples/03-one-to-many-relationship/generated/classes.ts
- +8 −9 examples/03-one-to-many-relationship/package.json
- +985 −1,126 examples/03-one-to-many-relationship/yarn.lock
- +324 −9 examples/04-many-to-many-relationship/generated/classes.ts
- +8 −9 examples/04-many-to-many-relationship/package.json
- +985 −1,126 examples/04-many-to-many-relationship/yarn.lock
- +64 −1 examples/05-migrations/generated/classes.ts
- +9 −10 examples/05-migrations/package.json
- +1,054 −1,334 examples/05-migrations/yarn.lock
- +64 −1 examples/06-base-service/generated/classes.ts
- +7 −9 examples/06-base-service/package.json
- +986 −1,127 examples/06-base-service/yarn.lock
- +544 −40 examples/07-feature-flags/generated/classes.ts
- +4 −14 examples/07-feature-flags/package.json
- +1 −2 examples/07-feature-flags/src/feature-flag-user/feature-flag-user.service.ts
- +972 −1,171 examples/07-feature-flags/yarn.lock
- +130 −4 examples/08-performance/generated/classes.ts
- +8 −9 examples/08-performance/package.json
- +985 −1,126 examples/08-performance/yarn.lock
- +130 −4 examples/09-production/generated/classes.ts
- +8 −9 examples/09-production/package.json
- +985 −1,126 examples/09-production/yarn.lock
- +5 −1 package.json
- +17 −7 src/cli/commands/codegen.ts
- +2 −3 src/core/BaseService.ts
- +19 −20 src/core/code-generator.ts
- +4 −2 src/core/config.ts
- +3 −1 src/core/logger.ts
- +1 −1 src/core/server.test.ts
- +1 −3 src/core/server.ts
- +2 −0 src/core/types.ts
- +13 −7 src/decorators/BooleanField.ts
- +16 −7 src/decorators/DateField.ts
- +10 −4 src/decorators/EmailField.ts
- +14 −5 src/decorators/EnumField.ts
- +14 −4 src/decorators/FloatField.ts
- +39 −0 src/decorators/IdField.ts
- +14 −4 src/decorators/IntField.ts
- +22 −0 src/decorators/InterfaceType.ts
- +10 −5 src/decorators/JSONField.ts
- +2 −2 src/decorators/ManyToOne.ts
- +32 −6 src/decorators/StringField.ts
- +2 −0 src/decorators/index.ts
- +1 −1 src/metadata/index.ts
- +190 −19 src/metadata/metadata-storage.ts
- +16 −11 src/schema/SchemaGenerator.ts
- +174 −210 src/schema/TypeORMConverter.ts
- +0 −35 src/test/functional/cli.test.ts
- +4 −1 src/test/functional/server.test.ts
- +4 −1 src/test/modules/kitchen-sink/kitchen-sink.model.ts
- +1 −0 src/tgql/index.ts
- +22 −0 src/tgql/loadGlobs.ts
- +4 −4 src/utils/decoratorComposer.ts
- +6 −3 tools/bootstrap-all.sh
- +2 −1 tsconfig.eslint.json
- +110 −68 yarn.lock
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -27,7 +27,7 @@ jobs: | ||
flags: backend | ||
- run: | ||
name: deploy | ||
command: DEBUG=condition* yarn run semantic-release --debug || true | ||
- save_cache: | ||
key: *yarn_cache_key | ||
paths: ~/circleci/node_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -1,12 +1,12 @@ | ||
{ | ||
"first-line-h1": { | ||
"level": 2 | ||
}, | ||
"line-length": false, | ||
"no-inline-html": { | ||
"allowed_elements": ["a", "img", "p"] | ||
}, | ||
"no-trailing-punctuation": { | ||
"punctuation": ".,;:" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -0,0 +1 @@ | ||
registry "https://registry.npmjs.org" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.