Skip to content

Commit e2ba91a

Browse files
committed
fixes
standardize deno call sites remove unnecessary plugin
1 parent 12f602a commit e2ba91a

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

integrationTests/conditions/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ childProcess.execSync(
2626

2727
console.log('Testing on deno (moduleSync: false) ...');
2828
childProcess.execSync(
29-
`docker run --rm --volume "$PWD":/usr/src/app -w /usr/src/app --env MODULE_SYNC=false denoland/deno:alpine-"$DENO_VERSION" deno run --allow-read --allow-env ./check.mjs`,
29+
`docker run --rm --volume "$PWD":/usr/src/app -w /usr/src/app --env MODULE_SYNC=false denoland/deno:alpine-"$DENO_VERSION" deno run --allow-read ./check.mjs`,
3030
{ stdio: 'inherit' },
3131
);

integrationTests/dev-deno/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"description": "graphql-js development mode should work with Deno",
33
"private": true,
44
"scripts": {
5-
"test": "docker run --rm --volume \"$PWD\":/usr/src/app -w /usr/src/app denoland/deno:latest deno run --conditions=development --allow-env=NODE_ENV test.js"
5+
"test": "docker run --rm --volume \"$PWD\":/usr/src/app -w /usr/src/app denoland/deno:alpine-\"$DENO_VERSION\" deno run --conditions=development test.js"
66
},
77
"dependencies": {
88
"graphql": "file:../graphql.tgz"

integrationTests/prod-rollup/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
},
99
"dependencies": {
1010
"graphql": "file:../graphql.tgz",
11-
"rollup": "^4.0.0",
12-
"@rollup/plugin-node-resolve": "^15.0.0"
11+
"rollup": "^4.0.0"
1312
}
1413
}

0 commit comments

Comments
 (0)