patstrz
02/13/2018, 11:20 PM> Building
> ✓ Installed 914 modules [12s]
> ▲ npm run build
> > test-ts-server@ build /home/nowuser/src
> > rimraf dist && tsc
> node_modules/graphql-yoga/dist/src/types.d.ts(6,37): error TS2307: Cannot find module 'graphql-subscriptions/dist/subscriptions-manager'. `
any ideas what to do with this? I’m using graphql-yoga version 1.2.4nikolasburk
typescript-advanced
boilerplate is on v1.2.5 of graphql-yoga
. Can you try to upgrade your Yoga version and see if the issue persists please? 🙂patstrz
02/14/2018, 4:00 PM{
"name": "test-ts-server",
"scripts": {
"start": "dotenv -- nodemon -e ts,graphql -x ts-node src/index.ts",
"dev": "npm-run-all --parallel start playground",
"debug": "dotenv -- nodemon -e ts,graphql -x ts-node --inspect src/index.ts",
"playground": "graphql playground",
"build": "rimraf dist && tsc"
},
"dependencies": {
"bcryptjs": "2.4.3",
"graphql-yoga": "1.2.5",
"jsonwebtoken": "8.1.1",
"prisma-binding": "1.5.7"
},
"devDependencies": {
"@types/bcryptjs": "2.4.1",
"dotenv-cli": "1.4.0",
"graphql-cli": "2.13.2",
"nodemon": "1.14.12",
"npm-run-all": "4.1.2",
"prisma": "1.1.3",
"rimraf": "2.6.2",
"ts-node": "4.1.0",
"typescript": "2.6.2"
}
}
nikolasburk
patstrz
02/14/2018, 9:48 PM@patstrz
when you reply so I get a notification 🙂 ?