├── .gitignore ├── .npmignore ├── .nvmrc ├── .size-limit ├── .travis.yml ├── LICENSE ├── README.md ├── __tests__ └── index.tsx ├── package.json ├── src ├── createPureContext.ts ├── index.ts ├── partial.ts └── pure.ts ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-shallow-context/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-shallow-context/HEAD/.npmignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 8.5.0 -------------------------------------------------------------------------------- /.size-limit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-shallow-context/HEAD/.size-limit -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-shallow-context/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-shallow-context/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-shallow-context/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-shallow-context/HEAD/__tests__/index.tsx -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-shallow-context/HEAD/package.json -------------------------------------------------------------------------------- /src/createPureContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-shallow-context/HEAD/src/createPureContext.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-shallow-context/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/partial.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-shallow-context/HEAD/src/partial.ts -------------------------------------------------------------------------------- /src/pure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-shallow-context/HEAD/src/pure.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-shallow-context/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-shallow-context/HEAD/yarn.lock --------------------------------------------------------------------------------