├── .gitignore ├── .npmignore ├── LICENSE.md ├── README.md ├── bin └── create-expo-cljs-app.js ├── deps.edn ├── package.json ├── shadow-cljs.edn ├── src └── create_expo_cljs_app │ └── lib.cljs ├── template ├── .gitignore ├── .npmignore ├── README.md ├── app.json ├── assets │ ├── icon.png │ ├── shadow-cljs.png │ └── splash.png ├── babel.config.js ├── deps.edn ├── externs │ └── app.txt ├── package.json ├── shadow-cljs.edn └── src │ ├── app │ ├── db.cljs │ ├── fx.cljs │ ├── handlers.cljs │ ├── handlers_test.cljs │ ├── helpers.cljs │ ├── index.cljs │ ├── subscriptions.cljs │ └── subscriptions_test.cljs │ └── reagent │ └── dom.cljs └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoodhcg/create-expo-cljs-app/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoodhcg/create-expo-cljs-app/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoodhcg/create-expo-cljs-app/HEAD/README.md -------------------------------------------------------------------------------- /bin/create-expo-cljs-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoodhcg/create-expo-cljs-app/HEAD/bin/create-expo-cljs-app.js -------------------------------------------------------------------------------- /deps.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoodhcg/create-expo-cljs-app/HEAD/deps.edn -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoodhcg/create-expo-cljs-app/HEAD/package.json -------------------------------------------------------------------------------- /shadow-cljs.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoodhcg/create-expo-cljs-app/HEAD/shadow-cljs.edn -------------------------------------------------------------------------------- /src/create_expo_cljs_app/lib.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoodhcg/create-expo-cljs-app/HEAD/src/create_expo_cljs_app/lib.cljs -------------------------------------------------------------------------------- /template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoodhcg/create-expo-cljs-app/HEAD/template/.gitignore -------------------------------------------------------------------------------- /template/.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoodhcg/create-expo-cljs-app/HEAD/template/README.md -------------------------------------------------------------------------------- /template/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoodhcg/create-expo-cljs-app/HEAD/template/app.json -------------------------------------------------------------------------------- /template/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoodhcg/create-expo-cljs-app/HEAD/template/assets/icon.png -------------------------------------------------------------------------------- /template/assets/shadow-cljs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoodhcg/create-expo-cljs-app/HEAD/template/assets/shadow-cljs.png -------------------------------------------------------------------------------- /template/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoodhcg/create-expo-cljs-app/HEAD/template/assets/splash.png -------------------------------------------------------------------------------- /template/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoodhcg/create-expo-cljs-app/HEAD/template/babel.config.js -------------------------------------------------------------------------------- /template/deps.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoodhcg/create-expo-cljs-app/HEAD/template/deps.edn -------------------------------------------------------------------------------- /template/externs/app.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoodhcg/create-expo-cljs-app/HEAD/template/externs/app.txt -------------------------------------------------------------------------------- /template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoodhcg/create-expo-cljs-app/HEAD/template/package.json -------------------------------------------------------------------------------- /template/shadow-cljs.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoodhcg/create-expo-cljs-app/HEAD/template/shadow-cljs.edn -------------------------------------------------------------------------------- /template/src/app/db.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoodhcg/create-expo-cljs-app/HEAD/template/src/app/db.cljs -------------------------------------------------------------------------------- /template/src/app/fx.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoodhcg/create-expo-cljs-app/HEAD/template/src/app/fx.cljs -------------------------------------------------------------------------------- /template/src/app/handlers.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoodhcg/create-expo-cljs-app/HEAD/template/src/app/handlers.cljs -------------------------------------------------------------------------------- /template/src/app/handlers_test.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoodhcg/create-expo-cljs-app/HEAD/template/src/app/handlers_test.cljs -------------------------------------------------------------------------------- /template/src/app/helpers.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoodhcg/create-expo-cljs-app/HEAD/template/src/app/helpers.cljs -------------------------------------------------------------------------------- /template/src/app/index.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoodhcg/create-expo-cljs-app/HEAD/template/src/app/index.cljs -------------------------------------------------------------------------------- /template/src/app/subscriptions.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoodhcg/create-expo-cljs-app/HEAD/template/src/app/subscriptions.cljs -------------------------------------------------------------------------------- /template/src/app/subscriptions_test.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoodhcg/create-expo-cljs-app/HEAD/template/src/app/subscriptions_test.cljs -------------------------------------------------------------------------------- /template/src/reagent/dom.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoodhcg/create-expo-cljs-app/HEAD/template/src/reagent/dom.cljs -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoodhcg/create-expo-cljs-app/HEAD/yarn.lock --------------------------------------------------------------------------------