├── .gitignore ├── README.md ├── package.json └── react-scripts.js /.gitignore: -------------------------------------------------------------------------------- 1 | # dependencies 2 | node_modules 3 | 4 | # build 5 | .merlin 6 | public/main.js 7 | lib 8 | 9 | # logs 10 | *.log 11 | 12 | # mac 13 | .DS_Store 14 | 15 | # vim 16 | [._]*.s[a-w][a-z] 17 | [._]s[a-w][a-z] 18 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Hello! **This is no longer maintained**. Please see the official Getting Started Guide at https://reasonml.github.io/reason-react/docs/en/installation.html 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "create-reason-react-app", 3 | "version": "0.2.4", 4 | "description": "Create Reason React App", 5 | "main": "index.js", 6 | "bin": "react-scripts.js", 7 | "author": "Mateusz Zatorski", 8 | "repository": "https://github.com/knowbody/crra.git", 9 | "license": "MIT", 10 | "dependencies": { 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /react-scripts.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 'use strict'; 3 | 4 | console.log('Hello! **This is no longer maintained**. Please see the official Getting Started Guide at https://reasonml.github.io/reason-react/gettingStarted.html#getting-started'); 5 | --------------------------------------------------------------------------------