├── .codecov.yml ├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .vscode └── settings.json ├── CHANGELOG ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── package.json ├── src ├── index.ts ├── shim │ └── index.ts └── worker │ ├── index.ts │ └── runtime │ ├── .eslintrc │ └── index.ts ├── tests ├── config │ ├── browsers │ │ └── unit.json │ └── index.ts ├── helpers │ └── index.ts ├── karma.conf.ts ├── suites │ └── unit │ │ └── index.spec.ts ├── tsconfig.json ├── tslint.json └── workers │ ├── error.js │ ├── message.js │ ├── script-import-a.js │ ├── script-import-b.js │ └── scripts.js ├── tsconfig.json └── typings ├── karma.d.ts └── project-name-generator.d.ts /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/iframe-worker/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/iframe-worker/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/iframe-worker/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/iframe-worker/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/iframe-worker/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/iframe-worker/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/iframe-worker/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/iframe-worker/HEAD/CHANGELOG -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/iframe-worker/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/iframe-worker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/iframe-worker/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/iframe-worker/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/iframe-worker/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/shim/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/iframe-worker/HEAD/src/shim/index.ts -------------------------------------------------------------------------------- /src/worker/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/iframe-worker/HEAD/src/worker/index.ts -------------------------------------------------------------------------------- /src/worker/runtime/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/iframe-worker/HEAD/src/worker/runtime/.eslintrc -------------------------------------------------------------------------------- /src/worker/runtime/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/iframe-worker/HEAD/src/worker/runtime/index.ts -------------------------------------------------------------------------------- /tests/config/browsers/unit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/iframe-worker/HEAD/tests/config/browsers/unit.json -------------------------------------------------------------------------------- /tests/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/iframe-worker/HEAD/tests/config/index.ts -------------------------------------------------------------------------------- /tests/helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/iframe-worker/HEAD/tests/helpers/index.ts -------------------------------------------------------------------------------- /tests/karma.conf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/iframe-worker/HEAD/tests/karma.conf.ts -------------------------------------------------------------------------------- /tests/suites/unit/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/iframe-worker/HEAD/tests/suites/unit/index.spec.ts -------------------------------------------------------------------------------- /tests/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/iframe-worker/HEAD/tests/tsconfig.json -------------------------------------------------------------------------------- /tests/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/iframe-worker/HEAD/tests/tslint.json -------------------------------------------------------------------------------- /tests/workers/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/iframe-worker/HEAD/tests/workers/error.js -------------------------------------------------------------------------------- /tests/workers/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/iframe-worker/HEAD/tests/workers/message.js -------------------------------------------------------------------------------- /tests/workers/script-import-a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/iframe-worker/HEAD/tests/workers/script-import-a.js -------------------------------------------------------------------------------- /tests/workers/script-import-b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/iframe-worker/HEAD/tests/workers/script-import-b.js -------------------------------------------------------------------------------- /tests/workers/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/iframe-worker/HEAD/tests/workers/scripts.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/iframe-worker/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typings/karma.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/iframe-worker/HEAD/typings/karma.d.ts -------------------------------------------------------------------------------- /typings/project-name-generator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squidfunk/iframe-worker/HEAD/typings/project-name-generator.d.ts --------------------------------------------------------------------------------