├── .github └── workflows │ └── build.yml ├── .gitignore ├── .gitmodules ├── .ruby-version ├── README.md ├── package.json ├── rollup.config.mjs └── src ├── index.html └── index.js /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mame/emirb/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /emscripten-pty.js 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mame/emirb/HEAD/.gitmodules -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.3.0 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mame/emirb/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mame/emirb/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mame/emirb/HEAD/rollup.config.mjs -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mame/emirb/HEAD/src/index.html -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mame/emirb/HEAD/src/index.js --------------------------------------------------------------------------------