Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: dotansimha/graphql-code-generator
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 3b7f972e192ffa08e9ddc769d054504d55b143b3
Choose a base ref
..
head repository: dotansimha/graphql-code-generator
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 99be03d53eca507f70280be3649bda24ad4f0208
Choose a head ref
Showing with 3 additions and 1 deletion.
  1. +1 −1 .vscode/settings.json
  2. +2 −0 scripts/test-esm.mjs
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@
"files.exclude": {
"**/.git": true,
"**/.DS_Store": true,
"node_modules": true,
"node_modules": false,
"test-lib": true,
"lib": true,
"coverage": true,
2 changes: 2 additions & 0 deletions scripts/test-esm.mjs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable no-console */
import globby from 'globby';
import { dirname } from 'path';
import { fileURLToPath } from 'url';
@@ -9,6 +10,7 @@ global.expect.extend = () => {};
async function main() {
const mjsFiles = await globby(['../packages/**/dist/*.mjs'], {
cwd: dirname(fileURLToPath(import.meta.url)),
ignore: ['../packages/utils/graphql-codegen-testing/dist/index.mjs'],
});

const ok = [];