├── .editorconfig ├── .gitignore ├── Gruntfile.js ├── README.md ├── assets ├── index.html └── scripts │ └── Main.ls ├── bower.json ├── grunt ├── aliases.yaml ├── connect.ls ├── copy.ls ├── livescript.ls └── react.ls ├── package.json ├── server └── tmp └── scripts └── Main.jsx /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfflow/react-livescript-jsx/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfflow/react-livescript-jsx/HEAD/.gitignore -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfflow/react-livescript-jsx/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfflow/react-livescript-jsx/HEAD/README.md -------------------------------------------------------------------------------- /assets/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfflow/react-livescript-jsx/HEAD/assets/index.html -------------------------------------------------------------------------------- /assets/scripts/Main.ls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfflow/react-livescript-jsx/HEAD/assets/scripts/Main.ls -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfflow/react-livescript-jsx/HEAD/bower.json -------------------------------------------------------------------------------- /grunt/aliases.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfflow/react-livescript-jsx/HEAD/grunt/aliases.yaml -------------------------------------------------------------------------------- /grunt/connect.ls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfflow/react-livescript-jsx/HEAD/grunt/connect.ls -------------------------------------------------------------------------------- /grunt/copy.ls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfflow/react-livescript-jsx/HEAD/grunt/copy.ls -------------------------------------------------------------------------------- /grunt/livescript.ls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfflow/react-livescript-jsx/HEAD/grunt/livescript.ls -------------------------------------------------------------------------------- /grunt/react.ls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfflow/react-livescript-jsx/HEAD/grunt/react.ls -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfflow/react-livescript-jsx/HEAD/package.json -------------------------------------------------------------------------------- /server: -------------------------------------------------------------------------------- 1 | grunt connect 2 | 3 | -------------------------------------------------------------------------------- /tmp/scripts/Main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfflow/react-livescript-jsx/HEAD/tmp/scripts/Main.jsx --------------------------------------------------------------------------------