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.

Add peer dependency range matching version

+5 -2
+2 -1
package.json
··· 1 1 { 2 2 "name": "graphql-web-lite", 3 - "version": "15.0.0-alpha.1", 3 + "version": "15.5.1000", 4 4 "license": "MIT", 5 + "private": true, 5 6 "workspaces": [ 6 7 "scripts/buildenv" 7 8 ],
+3 -1
scripts/rollup/packageMetadata.js
··· 8 8 major: parsedVersion.major, 9 9 minor: parsedVersion.minor, 10 10 patch: parsedVersion.patch, 11 - preReleaseTag: 'lite.' + parsedVersion.prerelease.join('.'), 11 + preReleaseTag: 'lite', 12 12 lite: true, 13 13 }; 14 14 ··· 20 20 export const packageMetadata = JSON.stringify( 21 21 { 22 22 ...gqlPkg, 23 + private: undefined, 24 + publishConfig: undefined, 23 25 name: 'graphql-web-lite', 24 26 version: rootPkg.version, 25 27 sideEffects: false,