├── .gitignore ├── .npmignore ├── README.md ├── package.json ├── rome.json ├── src ├── commands │ ├── build.ts │ ├── dev.ts │ └── init.ts ├── hotreload.tsx └── index.ts ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | src 2 | node_modules 3 | .gitignore 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato4d/dodai/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato4d/dodai/HEAD/package.json -------------------------------------------------------------------------------- /rome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato4d/dodai/HEAD/rome.json -------------------------------------------------------------------------------- /src/commands/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato4d/dodai/HEAD/src/commands/build.ts -------------------------------------------------------------------------------- /src/commands/dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato4d/dodai/HEAD/src/commands/dev.ts -------------------------------------------------------------------------------- /src/commands/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato4d/dodai/HEAD/src/commands/init.ts -------------------------------------------------------------------------------- /src/hotreload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato4d/dodai/HEAD/src/hotreload.tsx -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato4d/dodai/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato4d/dodai/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/potato4d/dodai/HEAD/yarn.lock --------------------------------------------------------------------------------