Mirror: The highly customizable and versatile GraphQL client with which you add on features like normalized caching as you grow.
1
fork

Configure Feed

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

Add build tasks to all packages

+29 -9
+6 -3
exchanges/graphcache/package.json
··· 9 9 "repository": { 10 10 "type": "git", 11 11 "url": "https://github.com/FormidableLabs/urql.git", 12 - "directory": "packages/core" 12 + "directory": "exchanges/graphcache" 13 13 }, 14 14 "keywords": [ 15 15 "urql", ··· 19 19 "formidablelabs", 20 20 "exchanges" 21 21 ], 22 - "main": "dist/urql-exchange-graphcache.js", 23 - "module": "dist/urql-exchange-graphcache.es.js", 22 + "main": "dist/urql-exchange-graphcache.cjs.js", 23 + "module": "dist/urql-exchange-graphcache.esm.js", 24 24 "types": "dist/types/index.d.ts", 25 25 "source": "src/index.ts", 26 + "scripts": { 27 + "build": "rollup -c ../../scripts/rollup/config.js" 28 + }, 26 29 "jest": { 27 30 "preset": "../../scripts/jest/preset" 28 31 },
+6 -3
packages/preact-urql/package.json
··· 9 9 "repository": { 10 10 "type": "git", 11 11 "url": "https://github.com/FormidableLabs/urql.git", 12 - "directory": "packages/core" 12 + "directory": "packages/preact-urql" 13 13 }, 14 14 "keywords": [ 15 15 "graphql client", ··· 19 19 "exchanges", 20 20 "preact" 21 21 ], 22 - "main": "dist/cjs/index.js", 23 - "module": "dist/es/index.js", 22 + "main": "dist/urql-preact.cjs.js", 23 + "module": "dist/urql-preact.esm.js", 24 24 "types": "dist/types/index.d.ts", 25 25 "source": "src/index.ts", 26 + "scripts": { 27 + "build": "rollup -c ../../scripts/rollup/config.js" 28 + }, 26 29 "jest": { 27 30 "preset": "../../scripts/jest/preset" 28 31 },
+8 -1
packages/react-urql/package.json
··· 9 9 "repository": { 10 10 "type": "git", 11 11 "url": "https://github.com/FormidableLabs/urql.git", 12 - "directory": "packages/core" 12 + "directory": "packages/react-urql" 13 13 }, 14 14 "keywords": [ 15 15 "graphql client", ··· 19 19 "exchanges", 20 20 "react" 21 21 ], 22 + "main": "dist/urql.cjs.js", 23 + "module": "dist/urql.esm.js", 24 + "types": "dist/types/index.d.ts", 25 + "source": "src/index.ts", 26 + "scripts": { 27 + "build": "rollup -c ../../scripts/rollup/config.js" 28 + }, 22 29 "jest": { 23 30 "preset": "../../scripts/jest/preset" 24 31 },
+9 -2
packages/svelte-urql/package.json
··· 1 1 { 2 - "name": "svelte-urql", 2 + "name": "@urql/svelte", 3 3 "version": "0.0.0", 4 4 "private": true, 5 5 "description": "WIP: A highly customizable and versatile GraphQL client for Svelte", ··· 10 10 "repository": { 11 11 "type": "git", 12 12 "url": "https://github.com/FormidableLabs/urql.git", 13 - "directory": "packages/core" 13 + "directory": "packages/svelte-urql" 14 14 }, 15 15 "keywords": [ 16 16 "graphql client", ··· 20 20 "exchanges", 21 21 "svelte" 22 22 ], 23 + "main": "dist/urql-svelte.cjs.js", 24 + "module": "dist/urql-svelte.esm.js", 25 + "types": "dist/types/index.d.ts", 26 + "source": "src/index.ts", 27 + "scripts": { 28 + "build": "rollup -c ../../scripts/rollup/config.js" 29 + }, 23 30 "jest": { 24 31 "preset": "../../scripts/jest/preset" 25 32 },