forked from Quramy/graphql-decorator
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #34 from indigotech/feature/refactor-field
Feature - Refactoring @field decorator
- Loading branch information
Showing
73 changed files
with
1,341 additions
and
997 deletions.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. | ||
# yarn lockfile v1 | ||
|
||
|
||
"@types/node@7.0.5": | ||
version "7.0.5" | ||
resolved "https://registry.yarnpkg.com/@types/node/-/node-7.0.5.tgz#96a0f0a618b7b606f1ec547403c00650210bfbb7" | ||
|
||
"graphql-schema-decorator@file:../../": | ||
version "0.8.0" | ||
dependencies: | ||
reflect-metadata "0.1.9" | ||
|
||
graphql@0.11.7: | ||
version "0.11.7" | ||
resolved "https://registry.yarnpkg.com/graphql/-/graphql-0.11.7.tgz#e5abaa9cb7b7cccb84e9f0836bf4370d268750c6" | ||
dependencies: | ||
iterall "1.1.3" | ||
|
||
iterall@1.1.3: | ||
version "1.1.3" | ||
resolved "https://registry.yarnpkg.com/iterall/-/iterall-1.1.3.tgz#1cbbff96204056dde6656e2ed2e2226d0e6d72c9" | ||
|
||
reflect-metadata@0.1.9: | ||
version "0.1.9" | ||
resolved "https://registry.yarnpkg.com/reflect-metadata/-/reflect-metadata-0.1.9.tgz#987238dc87a516895fe457f130435ffbd763a4d4" | ||
|
||
typescript@2.3.4: | ||
version "2.3.4" | ||
resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.3.4.tgz#3d38321828231e434f287514959c37a82b629f42" |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,24 @@ | ||
npm run test | ||
#!/bin/sh | ||
|
||
if [ "$?" -gt 0 ]; then | ||
exit 1 | ||
fi | ||
set -e | ||
|
||
cd examples/hello-world/ | ||
|
||
npm install | ||
npm start | ||
yarn run test | ||
./node_modules/.bin/rimraf node_modules | ||
yarn install --production | ||
|
||
if [ "$?" -gt 0 ]; then | ||
exit 1 | ||
fi | ||
# Hellow World | ||
cd examples/hello-world/ | ||
yarn install | ||
yarn start | ||
cd ../../ | ||
|
||
# Simple CRUD | ||
cd examples/simple-crud | ||
|
||
npm install | ||
npm run print | ||
|
||
if [ "$?" -gt 0 ]; then | ||
exit 1 | ||
fi | ||
yarn install | ||
yarn run print | ||
cd ../../ | ||
|
||
# Restore lib environment | ||
yarn install | ||
|
||
exit 0 |
Oops, something went wrong.