├── .babelrc ├── .flowconfig ├── .gitignore ├── .npmignore ├── LICENSE.md ├── README.md ├── flow-typed └── npm │ ├── babel-cli_vx.x.x.js │ ├── babel-core_vx.x.x.js │ ├── babel-eslint_vx.x.x.js │ ├── babel-plugin-transform-runtime_vx.x.x.js │ ├── babel-polyfill_vx.x.x.js │ ├── babel-preset-env_vx.x.x.js │ ├── babel-preset-es2015_vx.x.x.js │ ├── babel-preset-flow_vx.x.x.js │ ├── babel-preset-stage-2_vx.x.x.js │ ├── deep-for-each_vx.x.x.js │ ├── eslint-plugin-babel_vx.x.x.js │ ├── eslint_vx.x.x.js │ ├── flow-bin_v0.x.x.js │ ├── husky_vx.x.x.js │ ├── is-function_vx.x.x.js │ ├── jest_v19.x.x.js │ ├── lint-staged_vx.x.x.js │ ├── prettier_vx.x.x.js │ └── rimraf_vx.x.x.js ├── package.json ├── src ├── index.js └── test │ └── index.test.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/graphql-log/HEAD/.babelrc -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/graphql-log/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/graphql-log/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/graphql-log/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/graphql-log/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/graphql-log/HEAD/README.md -------------------------------------------------------------------------------- /flow-typed/npm/babel-cli_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/graphql-log/HEAD/flow-typed/npm/babel-cli_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/babel-core_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/graphql-log/HEAD/flow-typed/npm/babel-core_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/babel-eslint_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/graphql-log/HEAD/flow-typed/npm/babel-eslint_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/babel-plugin-transform-runtime_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/graphql-log/HEAD/flow-typed/npm/babel-plugin-transform-runtime_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/babel-polyfill_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/graphql-log/HEAD/flow-typed/npm/babel-polyfill_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/babel-preset-env_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/graphql-log/HEAD/flow-typed/npm/babel-preset-env_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/babel-preset-es2015_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/graphql-log/HEAD/flow-typed/npm/babel-preset-es2015_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/babel-preset-flow_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/graphql-log/HEAD/flow-typed/npm/babel-preset-flow_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/babel-preset-stage-2_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/graphql-log/HEAD/flow-typed/npm/babel-preset-stage-2_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/deep-for-each_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/graphql-log/HEAD/flow-typed/npm/deep-for-each_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/eslint-plugin-babel_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/graphql-log/HEAD/flow-typed/npm/eslint-plugin-babel_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/eslint_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/graphql-log/HEAD/flow-typed/npm/eslint_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/flow-bin_v0.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/graphql-log/HEAD/flow-typed/npm/flow-bin_v0.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/husky_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/graphql-log/HEAD/flow-typed/npm/husky_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/is-function_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/graphql-log/HEAD/flow-typed/npm/is-function_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/jest_v19.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/graphql-log/HEAD/flow-typed/npm/jest_v19.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/lint-staged_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/graphql-log/HEAD/flow-typed/npm/lint-staged_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/prettier_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/graphql-log/HEAD/flow-typed/npm/prettier_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/rimraf_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/graphql-log/HEAD/flow-typed/npm/rimraf_vx.x.x.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/graphql-log/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/graphql-log/HEAD/src/index.js -------------------------------------------------------------------------------- /src/test/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/graphql-log/HEAD/src/test/index.test.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/graphql-log/HEAD/yarn.lock --------------------------------------------------------------------------------