Skip to content

Commit

Permalink
making graphql package buildable
Browse files Browse the repository at this point in the history
  • Loading branch information
Brendan Cass committed Aug 8, 2018
1 parent 34e96ce commit 7a78dbc
Show file tree
Hide file tree
Showing 5 changed files with 9,208 additions and 133 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
node_modules/
.vscode/
node_modules/
build/
build/
lib/
14 changes: 8 additions & 6 deletions packages/graphql/package.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,23 @@
{
"name": "@weaver/graphql",
"version": "0.0.1",
"version": "0.0.2",
"description": "graphql api for weaver",
"main": "./src/index.js",
"scripts": {
"start": "node ./lib",
"build": "tsc",
"dev": "DEBUG=true ts-node-dev ./src"
"build": "tsc --p ./",
"dev": "DEBUG=true ts-node-dev ./src",
"gitPub": "node ./publish.js"
},
"license": "MIT",
"dependencies": {
"apollo-server": "^2.0.0-rc.4",
"apollo-server": "^2.0.0",
"graphql": "^0.13.2"
},
"devDependencies": {
"typescript": "^2.9.2",
"@types/graphql": "^0.13.4",
"@types/node": "10.3.4",
"ts-node-dev": "^1.0.0-pre.26",
"@types/node": "10.3.4"
"typescript": "^2.9.2"
}
}
1 change: 1 addition & 0 deletions packages/graphql/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"esModuleInterop": true,
"target": "es6",
"lib": ["es6", "dom", "esnext"],
"typeRoots": ["../node_modules/@types", "node_modules/@types"],
"sourceMap": true,
"allowJs": true
},
Expand Down
Loading

0 comments on commit 7a78dbc

Please sign in to comment.