├── .gitignore ├── README.md ├── dev └── user.clj ├── library.js ├── package.json ├── project.clj ├── resources └── public │ ├── css │ └── style.css │ └── index.html ├── src ├── cljsjs │ ├── react.cljs │ └── react │ │ ├── dom.cljs │ │ └── dom │ │ └── server.cljs └── double_bundle │ └── core.cljs ├── webpack.config.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pesterhazy/double-bundle/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pesterhazy/double-bundle/HEAD/README.md -------------------------------------------------------------------------------- /dev/user.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pesterhazy/double-bundle/HEAD/dev/user.clj -------------------------------------------------------------------------------- /library.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pesterhazy/double-bundle/HEAD/library.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pesterhazy/double-bundle/HEAD/package.json -------------------------------------------------------------------------------- /project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pesterhazy/double-bundle/HEAD/project.clj -------------------------------------------------------------------------------- /resources/public/css/style.css: -------------------------------------------------------------------------------- 1 | /* some style */ 2 | 3 | -------------------------------------------------------------------------------- /resources/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pesterhazy/double-bundle/HEAD/resources/public/index.html -------------------------------------------------------------------------------- /src/cljsjs/react.cljs: -------------------------------------------------------------------------------- 1 | (ns cljsjs.react) 2 | -------------------------------------------------------------------------------- /src/cljsjs/react/dom.cljs: -------------------------------------------------------------------------------- 1 | (ns cljsjs.react.dom) -------------------------------------------------------------------------------- /src/cljsjs/react/dom/server.cljs: -------------------------------------------------------------------------------- 1 | (ns cljsjs.react.dom.server) -------------------------------------------------------------------------------- /src/double_bundle/core.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pesterhazy/double-bundle/HEAD/src/double_bundle/core.cljs -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pesterhazy/double-bundle/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pesterhazy/double-bundle/HEAD/yarn.lock --------------------------------------------------------------------------------