Skip to content

Commit

Permalink
copy scalar types to dist for schema creation
Browse files Browse the repository at this point in the history
  • Loading branch information
mipyykko committed May 26, 2023
1 parent 1ce5c0c commit daa33e3
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion backend/graphql/Completion/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// generated Tue May 09 2023 18:56:50 GMT+0300 (Itä-Euroopan kesäaika)
// generated Fri May 26 2023 13:59:17 GMT+0300 (Itä-Euroopan kesäaika)

export * from "./input"
export * from "./model"
Expand Down
2 changes: 1 addition & 1 deletion backend/graphql/Course/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// generated Tue May 09 2023 18:56:50 GMT+0300 (Itä-Euroopan kesäaika)
// generated Fri May 26 2023 13:59:17 GMT+0300 (Itä-Euroopan kesäaika)

export * from "./input"
export * from "./model"
Expand Down
2 changes: 1 addition & 1 deletion backend/graphql/StudyModule/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// generated Tue May 09 2023 18:56:50 GMT+0300 (Itä-Euroopan kesäaika)
// generated Fri May 26 2023 13:59:17 GMT+0300 (Itä-Euroopan kesäaika)

export * from "./input"
export * from "./model"
Expand Down
2 changes: 1 addition & 1 deletion backend/graphql/User/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// generated Tue May 09 2023 18:56:50 GMT+0300 (Itä-Euroopan kesäaika)
// generated Fri May 26 2023 13:59:17 GMT+0300 (Itä-Euroopan kesäaika)

export * from "./input"
export * from "./model"
Expand Down
2 changes: 1 addition & 1 deletion backend/graphql/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// generated Tue May 09 2023 18:56:50 GMT+0300 (Itä-Euroopan kesäaika)
// generated Fri May 26 2023 13:59:17 GMT+0300 (Itä-Euroopan kesäaika)

export * from "./ABEnrollment"
export * from "./ABStudy"
Expand Down
2 changes: 1 addition & 1 deletion backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"dev": "npm run download-env && ts-node-dev --transpile-only ./app.ts",
"dev:typecheck": "tsc --noEmit --watch",
"generate:nexus": "cross-env NEXUS_REFLECTION=true NODE_ENV=production ts-node --transpile-only ./schema.ts",
"build": "npm run download-env && npm run createExports && tsc --noEmit false",
"build": "npm run download-env && npm run createExports && tsc --noEmit false && cp -R types dist",
"start": "node dist/app.js",
"copy-env": "cp ./config/env.json ./dist/config/env.json",
"migrate": "knex migrate:latest",
Expand Down

0 comments on commit daa33e3

Please sign in to comment.