├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── declaration.tsconfig.json ├── examples ├── bare │ ├── index.js │ ├── package.json │ ├── template.yml │ └── worker.js └── webpack │ ├── package.json │ ├── src │ ├── index.js │ └── worker.js │ ├── template.yml │ └── webpack.config.js ├── package.json ├── src └── index.js ├── tsconfig.json └── types └── index.d.ts /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | node_modules 3 | package-lock.json 4 | dist 5 | samconfig.toml 6 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/sync-threads/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/sync-threads/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/sync-threads/HEAD/README.md -------------------------------------------------------------------------------- /declaration.tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/sync-threads/HEAD/declaration.tsconfig.json -------------------------------------------------------------------------------- /examples/bare/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/sync-threads/HEAD/examples/bare/index.js -------------------------------------------------------------------------------- /examples/bare/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/sync-threads/HEAD/examples/bare/package.json -------------------------------------------------------------------------------- /examples/bare/template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/sync-threads/HEAD/examples/bare/template.yml -------------------------------------------------------------------------------- /examples/bare/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/sync-threads/HEAD/examples/bare/worker.js -------------------------------------------------------------------------------- /examples/webpack/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/sync-threads/HEAD/examples/webpack/package.json -------------------------------------------------------------------------------- /examples/webpack/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/sync-threads/HEAD/examples/webpack/src/index.js -------------------------------------------------------------------------------- /examples/webpack/src/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/sync-threads/HEAD/examples/webpack/src/worker.js -------------------------------------------------------------------------------- /examples/webpack/template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/sync-threads/HEAD/examples/webpack/template.yml -------------------------------------------------------------------------------- /examples/webpack/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/sync-threads/HEAD/examples/webpack/webpack.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/sync-threads/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/sync-threads/HEAD/src/index.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/sync-threads/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambci/sync-threads/HEAD/types/index.d.ts --------------------------------------------------------------------------------