├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .gitattributes ├── .github └── workflows │ ├── publish.yml │ └── validity.yml ├── .gitignore ├── .nvmrc ├── .prettierrc ├── .vscode └── settings.json ├── .yarn └── releases │ └── yarn-1.22.5.js ├── .yarnrc ├── README.md ├── bin.js ├── fixtures └── tsconfig.json ├── package.json ├── src ├── __snapshots__ │ └── inject.test.ts.snap ├── assertNonNull.ts ├── commands.ts ├── helpers.ts ├── index.ts └── inject.test.ts ├── tsconfig.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bnaya/typescript-monorepo-toolkit/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bnaya/typescript-monorepo-toolkit/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bnaya/typescript-monorepo-toolkit/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bnaya/typescript-monorepo-toolkit/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bnaya/typescript-monorepo-toolkit/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/validity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bnaya/typescript-monorepo-toolkit/HEAD/.github/workflows/validity.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | yarn-error.log 4 | COMMIT 5 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bnaya/typescript-monorepo-toolkit/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.yarn/releases/yarn-1.22.5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bnaya/typescript-monorepo-toolkit/HEAD/.yarn/releases/yarn-1.22.5.js -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bnaya/typescript-monorepo-toolkit/HEAD/.yarnrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bnaya/typescript-monorepo-toolkit/HEAD/README.md -------------------------------------------------------------------------------- /bin.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require("./dist/index"); 3 | -------------------------------------------------------------------------------- /fixtures/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bnaya/typescript-monorepo-toolkit/HEAD/fixtures/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bnaya/typescript-monorepo-toolkit/HEAD/package.json -------------------------------------------------------------------------------- /src/__snapshots__/inject.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bnaya/typescript-monorepo-toolkit/HEAD/src/__snapshots__/inject.test.ts.snap -------------------------------------------------------------------------------- /src/assertNonNull.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bnaya/typescript-monorepo-toolkit/HEAD/src/assertNonNull.ts -------------------------------------------------------------------------------- /src/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bnaya/typescript-monorepo-toolkit/HEAD/src/commands.ts -------------------------------------------------------------------------------- /src/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bnaya/typescript-monorepo-toolkit/HEAD/src/helpers.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bnaya/typescript-monorepo-toolkit/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/inject.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bnaya/typescript-monorepo-toolkit/HEAD/src/inject.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bnaya/typescript-monorepo-toolkit/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bnaya/typescript-monorepo-toolkit/HEAD/yarn.lock --------------------------------------------------------------------------------