├── .circleci └── config.yml ├── .github └── FUNDING.yml ├── .gitignore ├── .huskyrc.json ├── README.md ├── codecov.yml ├── examples └── label-sync │ ├── package.json │ ├── prettier.config.js │ ├── src │ └── index.ts │ ├── tsconfig.json │ └── yarn.lock ├── jest.config.js ├── media ├── example.gif └── logo.png ├── package.json ├── prettier.config.js ├── renovate.json ├── src ├── creato.ts ├── index.ts └── loader.ts ├── tests ├── creato.test.ts └── loader.test.ts ├── tsconfig.json ├── tslint.json └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/creato/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/creato/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | coverage 4 | __tmp__ 5 | 6 | .DS_Store 7 | *.log* -------------------------------------------------------------------------------- /.huskyrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/creato/HEAD/.huskyrc.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/creato/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/creato/HEAD/codecov.yml -------------------------------------------------------------------------------- /examples/label-sync/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/creato/HEAD/examples/label-sync/package.json -------------------------------------------------------------------------------- /examples/label-sync/prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/creato/HEAD/examples/label-sync/prettier.config.js -------------------------------------------------------------------------------- /examples/label-sync/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/creato/HEAD/examples/label-sync/src/index.ts -------------------------------------------------------------------------------- /examples/label-sync/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/creato/HEAD/examples/label-sync/tsconfig.json -------------------------------------------------------------------------------- /examples/label-sync/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/creato/HEAD/examples/label-sync/yarn.lock -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/creato/HEAD/jest.config.js -------------------------------------------------------------------------------- /media/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/creato/HEAD/media/example.gif -------------------------------------------------------------------------------- /media/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/creato/HEAD/media/logo.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/creato/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/creato/HEAD/prettier.config.js -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/creato/HEAD/renovate.json -------------------------------------------------------------------------------- /src/creato.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/creato/HEAD/src/creato.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/creato/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/loader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/creato/HEAD/src/loader.ts -------------------------------------------------------------------------------- /tests/creato.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/creato/HEAD/tests/creato.test.ts -------------------------------------------------------------------------------- /tests/loader.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/creato/HEAD/tests/loader.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/creato/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/creato/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/creato/HEAD/yarn.lock --------------------------------------------------------------------------------