Mirror: The small sibling of the graphql package, slimmed down for client-side libraries.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: Add CHANGELOG and update version.mjs

+21 -2
+19
CHANGELOG.md
··· 1 + # graphql-web-lite 2 + 3 + Starting with `16.6.0-1` `graphql-web-lite` is published to match the 4 + `MAJOR.MINOR.PATCH` version of the aliased `graphql` version on `npm`. 5 + The prerelease is incremented to indicate changes in `graphql-web-lite`. 6 + 7 + ## 16.6.0-1 8 + 9 + - Replace `type/assertName` with a custom shim. 10 + - Fix `type/validate` being broken due to incorrect Buble and Terser build 11 + mangling. 12 + - Use [`@0no-co/graphql.web@0.1.6`](https://github.com/0no-co/graphql.web) as a shim. 13 + - This provides: `language/kind`, `language/parser`, `language/printer`, `language/visitor`, `language/printString`, and `language/blockString` 14 + - [`@0no-co/graphql.web@0.1.6`](https://github.com/0no-co/graphql.web) is 15 + built to replace GraphQL’s client-side query language parser, printer, and 16 + visitor, and is tested to 100% coverage and to match graphql.js’s 17 + performance. 18 + - Updated to `graphql@16.6.0` 19 + - Exports are now the intersection of `graphql@^16` and `graphql@15.8.0`
+2 -2
scripts/rollup/packageMetadata.mjs
··· 11 11 major: parsedVersion.major, 12 12 minor: parsedVersion.minor, 13 13 patch: parsedVersion.patch, 14 - preReleaseTag: 'lite', 14 + preReleaseTag: parsedVersion.prerelease ? parsedVersion.prerelease.join('.') : null, 15 15 lite: true, 16 16 }; 17 17 18 18 export const version = ` 19 - export const version = ${JSON.stringify(rootPkg.version)}; 19 + export const version = ${JSON.stringify(parsedVersion.raw)}; 20 20 export const versionInfo = ${JSON.stringify(versionInfo)}; 21 21 `.trim(); 22 22