├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── examples ├── cdn.html ├── coi-serviceworker.js ├── default.html ├── inline.html └── plain.html ├── package.json ├── rollup.config.js ├── src ├── embed.ts ├── flatPromise.ts └── index.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzuidhof/starboard-wrap/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "printWidth": 120 3 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzuidhof/starboard-wrap/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzuidhof/starboard-wrap/HEAD/README.md -------------------------------------------------------------------------------- /examples/cdn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzuidhof/starboard-wrap/HEAD/examples/cdn.html -------------------------------------------------------------------------------- /examples/coi-serviceworker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzuidhof/starboard-wrap/HEAD/examples/coi-serviceworker.js -------------------------------------------------------------------------------- /examples/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzuidhof/starboard-wrap/HEAD/examples/default.html -------------------------------------------------------------------------------- /examples/inline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzuidhof/starboard-wrap/HEAD/examples/inline.html -------------------------------------------------------------------------------- /examples/plain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzuidhof/starboard-wrap/HEAD/examples/plain.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzuidhof/starboard-wrap/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzuidhof/starboard-wrap/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/embed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzuidhof/starboard-wrap/HEAD/src/embed.ts -------------------------------------------------------------------------------- /src/flatPromise.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzuidhof/starboard-wrap/HEAD/src/flatPromise.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzuidhof/starboard-wrap/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzuidhof/starboard-wrap/HEAD/tsconfig.json --------------------------------------------------------------------------------