├── .eslintrc ├── .github └── workflows │ └── ci.yaml ├── .gitignore ├── .npmignore ├── .prettierrc ├── LICENSE ├── README.md ├── __test__ ├── bin.spec.ts ├── example.graphql └── index.spec.ts ├── bin └── cli.js ├── package.json ├── pnpm-lock.yaml ├── src └── index.ts ├── tsconfig.json └── vitest.config.ts /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drwpow/gqlmin/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drwpow/gqlmin/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __test__/example.min.graphql 2 | dist 3 | node_modules 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drwpow/gqlmin/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drwpow/gqlmin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drwpow/gqlmin/HEAD/README.md -------------------------------------------------------------------------------- /__test__/bin.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drwpow/gqlmin/HEAD/__test__/bin.spec.ts -------------------------------------------------------------------------------- /__test__/example.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drwpow/gqlmin/HEAD/__test__/example.graphql -------------------------------------------------------------------------------- /__test__/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drwpow/gqlmin/HEAD/__test__/index.spec.ts -------------------------------------------------------------------------------- /bin/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drwpow/gqlmin/HEAD/bin/cli.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drwpow/gqlmin/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drwpow/gqlmin/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drwpow/gqlmin/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drwpow/gqlmin/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drwpow/gqlmin/HEAD/vitest.config.ts --------------------------------------------------------------------------------