├── .github └── workflows │ └── nodejs.yml ├── .gitignore ├── .husky ├── .gitignore └── pre-commit ├── LICENSE ├── README.md ├── package.json ├── src ├── factory.ts └── index.ts ├── test └── factory.test.ts ├── tsconfig.json └── yarn.lock /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schniz/factoree/HEAD/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | .DS_Store 3 | node_modules 4 | dist 5 | .idea 6 | -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | npx tsdx lint 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schniz/factoree/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schniz/factoree/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schniz/factoree/HEAD/package.json -------------------------------------------------------------------------------- /src/factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schniz/factoree/HEAD/src/factory.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schniz/factoree/HEAD/src/index.ts -------------------------------------------------------------------------------- /test/factory.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schniz/factoree/HEAD/test/factory.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schniz/factoree/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Schniz/factoree/HEAD/yarn.lock --------------------------------------------------------------------------------