Skip to content
This repository has been archived by the owner on Sep 2, 2022. It is now read-only.

Commit

Permalink
fix ts node types
Browse files Browse the repository at this point in the history
  • Loading branch information
timsuchanek committed Oct 24, 2017
1 parent 3b148bf commit 86b5d9d
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 35 deletions.
2 changes: 1 addition & 1 deletion cli/packages/graphcool-cli-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "graphcool-cli-core",
"version": "1.4.19",
"version": "1.4.20",
"main": "dist/index.js",
"files": [
"dist"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,13 @@ export default class TypescriptBuilder {
lib: ['lib.es2017.d.ts'],
rootDir: this.definitionDir,
outDir: this.buildDir,
typeRoots: [
path.join('this-folder', 'does-not-exist'),
path.join(__dirname, '../../../../node_modules/@types'),
path.join(__dirname, '../../../../../../node_modules/@types'),
path.join(this.definitionDir, 'typings'),
path.join(this.definitionDir, 'node_modules/@types'),
]
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions cli/packages/graphcool-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "graphcool",
"version": "0.8.1",
"version": "0.8.2-alpha.1",
"main": "dist/index.js",
"bin": {
"graphcool": "dist/index.js",
Expand Down Expand Up @@ -49,7 +49,7 @@
},
"dependencies": {
"fs-extra": "^4.0.1",
"graphcool-cli-core": "1.4.19",
"graphcool-cli-core": "1.4.20",
"graphcool-cli-engine": "0.1.7",
"semver": "^5.4.1",
"source-map-support": "^0.4.18"
Expand Down
32 changes: 0 additions & 32 deletions cli/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1313,38 +1313,6 @@ graceful-fs@~3.0.2:
dependencies:
natives "^1.1.0"

[email protected]:
version "1.4.18"
resolved "https://registry.yarnpkg.com/graphcool-cli-core/-/graphcool-cli-core-1.4.18.tgz#e3ced51ed63fc5ad6a3340d20e69e80ad08aa20c"
dependencies:
archiver "^2.0.3"
callsites "^2.0.0"
chalk "^2.2.0"
chokidar "^1.7.0"
download-github-repo "^0.1.3"
figures "^2.0.0"
fs-extra "^4.0.2"
globby "^6.1.0"
graphcool-inquirer "^1.0.3"
graphcool-json-schema "^0.3.14"
inquirer "^3.3.0"
isomorphic-fetch "^2.2.1"
js-yaml "^3.9.1"
jwt-decode "^2.2.0"
lodash "^4.17.4"
lodash.differenceby "^4.8.0"
multimatch "^2.1.0"
opn "^5.1.0"
pause "^0.1.0"
portfinder "^1.0.13"
scuid "^1.0.2"
sillyname "^0.1.0"
source-map-support "^0.4.18"
table "^4.0.1"
ts-node "^3.3.0"
typescript "^2.5.3"
validator "^8.2.0"

graphcool-inquirer@^1.0.3:
version "1.0.3"
resolved "https://registry.yarnpkg.com/graphcool-inquirer/-/graphcool-inquirer-1.0.3.tgz#4ab8e28b4b9371eabb8ad0ad3c59754a35431633"
Expand Down

0 comments on commit 86b5d9d

Please sign in to comment.