├── .github └── workflows │ └── publish.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── package.json ├── pnpm-lock.yaml ├── scripts └── version.js ├── src ├── async-provider.ts └── lib │ ├── context.spec.ts │ └── context.ts ├── tsconfig.json ├── tsconfig.lib.json └── tsconfig.spec.json /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/async-provider/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .tsimp 2 | dist 3 | node_modules 4 | 5 | *.tsbuildinfo -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # async-provider CHANGELOG 2 | 3 | ## v0.0.1 (Nov 18, 2024) 4 | 5 | - Initial release 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/async-provider/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/async-provider/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/async-provider/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/async-provider/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /scripts/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/async-provider/HEAD/scripts/version.js -------------------------------------------------------------------------------- /src/async-provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/async-provider/HEAD/src/async-provider.ts -------------------------------------------------------------------------------- /src/lib/context.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/async-provider/HEAD/src/lib/context.spec.ts -------------------------------------------------------------------------------- /src/lib/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/async-provider/HEAD/src/lib/context.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/async-provider/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/async-provider/HEAD/tsconfig.lib.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/async-provider/HEAD/tsconfig.spec.json --------------------------------------------------------------------------------