├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── Gruntfile.js ├── LICENSE ├── README.md ├── bin └── rt.js ├── docs ├── cli.md ├── integrations.md ├── intellij-es6.png └── native.md ├── fiddle.html ├── home.config.js ├── img ├── github-fork-me.png ├── icons-footer-sab5af31545.png ├── logo-rt.svg └── samples │ └── delete.png ├── index.html ├── package.json ├── playground.config.js ├── playground ├── .eslintrc ├── CMLint.js ├── CodeMirrorEditor.js ├── CodeMirrorViewer.js ├── aceEditor.js ├── css │ ├── fiddle.css │ ├── home.css │ └── playground.css ├── dist │ ├── fiddle.min.js │ ├── home.min.js │ ├── rt-main.browser.js │ └── rt-main.browser.min.js ├── examples.js ├── examples.rt ├── examples.rt.js ├── fiddle-main.js ├── fiddle.js ├── fiddle.rt ├── fiddle.rt.js ├── home-main.js ├── libs │ ├── ace-builds-1.1.8 │ │ ├── src-min-noconflict │ │ │ ├── ace.js │ │ │ ├── mode-html.js │ │ │ ├── mode-javascript.js │ │ │ ├── mode-json.js │ │ │ └── theme-solarized_light.js │ │ └── src-min │ │ │ ├── ace.js │ │ │ ├── mode-html.js │ │ │ ├── mode-javascript.js │ │ │ └── mode-json.js │ ├── bootstrap │ │ ├── bootstrap.js │ │ └── bootstrap.min.js │ ├── codemirror-4.8 │ │ ├── addon │ │ │ ├── display │ │ │ │ └── panel.js │ │ │ ├── hint │ │ │ │ ├── css-hint.js │ │ │ │ ├── html-hint.js │ │ │ │ ├── javascript-hint.js │ │ │ │ ├── show-hint.css │ │ │ │ ├── show-hint.js │ │ │ │ └── xml-hint.js │ │ │ ├── lint │ │ │ │ └── lint.css │ │ │ └── runmode │ │ │ │ └── runmode.js │ │ ├── lib │ │ │ ├── codemirror.css │ │ │ └── codemirror.js │ │ ├── mode │ │ │ ├── css │ │ │ │ └── css.js │ │ │ ├── htmlmixed │ │ │ │ └── htmlmixed.js │ │ │ ├── javascript │ │ │ │ └── javascript.js │ │ │ └── xml │ │ │ │ └── xml.js │ │ └── theme │ │ │ └── solarized.css │ └── requirejs-plugins │ │ ├── json.js │ │ ├── json.min.js │ │ ├── text.js │ │ └── text.min.js ├── playground-fiddle.rt ├── playground-fiddle.rt.js ├── playground.js ├── playground.rt ├── playground.rt.js ├── rt-main.js └── samples │ ├── hello.code │ ├── hello.rt │ ├── rt-if.code │ ├── rt-if.rt │ ├── rt-import.rt │ ├── rt-props.code │ ├── rt-props.rt │ ├── rt-repeat.code │ ├── rt-repeat.rt │ ├── rt-require.rt │ ├── todo.code │ ├── todo.rt │ ├── todo2.code │ ├── todo2.rt │ ├── weather.code │ └── weather.rt ├── sample ├── .eslintrc ├── ImageSearch.js ├── ImageSearch.rt ├── ImageSearch.rt.js ├── InfiniteScroll.js ├── index.html ├── main.js └── sample.css ├── src ├── RTCodeError.js ├── api.js ├── cli.js ├── context.js ├── formatters │ ├── json.js │ └── stylish.js ├── fsUtil.js ├── options.js ├── reactDOMSupport.js ├── reactNativeSupport.js ├── reactPropTemplates.js ├── reactSupport.js ├── reactTemplates.js ├── rt-style-support-data.js ├── rtStyle.js ├── shell.js └── utils.js ├── test ├── data │ ├── autobind.rt │ ├── autobind.rt.js │ ├── className.rt │ ├── className.rt.html │ ├── comment.rt │ ├── comment.rt.amd.js │ ├── comment.rt.es6.js │ ├── concat.rt │ ├── concat.rt.html │ ├── custom-element.rt │ ├── custom-element.rt.html │ ├── div.rt │ ├── div.rt.15.js │ ├── div.rt.amd.js │ ├── div.rt.commonjs.js │ ├── div.rt.es6.js │ ├── div.rt.globals.js │ ├── div.rt.js │ ├── div.rt.typescript.ts │ ├── eval.rt │ ├── eval.rt.html │ ├── if-with-scope │ │ ├── valid-if-scope.rt │ │ └── valid-if-scope.rt.js │ ├── import.rt │ ├── import.rt.amd.js │ ├── import.rt.commonjs.js │ ├── import.rt.es6.js │ ├── import.rt.globals.js │ ├── import.rt.js │ ├── import.rt.typescript.ts │ ├── include.rt │ ├── include.rt.html │ ├── inputs.rt │ ├── inputs.rt.js │ ├── invalid │ │ ├── if-with-scope │ │ │ ├── invalid-if-scope-1.rt │ │ │ ├── invalid-if-scope-2.rt │ │ │ ├── invalid-if-scope-3.rt │ │ │ ├── invalid-if-scope-4.rt │ │ │ └── invalid-if-scope-5.rt │ │ ├── invalid-autobind.rt │ │ ├── invalid-brace.rt │ │ ├── invalid-exp.rt │ │ ├── invalid-html.rt │ │ ├── invalid-js.rt │ │ ├── invalid-lambda.rt │ │ ├── invalid-repeat-1.rt │ │ ├── invalid-repeat-2.rt │ │ ├── invalid-rt-import-1.rt │ │ ├── invalid-rt-import-2.rt │ │ ├── invalid-rt-import-3.rt │ │ ├── invalid-rt-import-4.rt │ │ ├── invalid-rt-require-1.rt │ │ ├── invalid-rt-require-2.rt │ │ ├── invalid-rt-require-duplicate.rt │ │ ├── invalid-rt-template-1.rt │ │ ├── invalid-rt-template-2.rt │ │ ├── invalid-scope.rt │ │ ├── invalid-single-root.rt │ │ ├── invalid-style-1.rt │ │ ├── invalid-style-2.rt │ │ ├── invalid-style-2.rt.js │ │ ├── invalid-virtual-1.rt │ │ └── invalid-virtual-2.rt │ ├── js-in-attr.rt │ ├── js-in-attr.rt.html │ ├── lambda.rt │ ├── lambda.rt.html │ ├── native │ │ ├── listViewAndCustomTemplate.rt │ │ ├── listViewAndCustomTemplate.rt.js │ │ ├── listViewAndCustomTemplate.rt.v029.js │ │ ├── listViewTemplate.rt │ │ ├── listViewTemplate.rt.js │ │ ├── listViewTemplate.rt.v029.js │ │ ├── nativeView.rt │ │ ├── nativeView.rt.js │ │ └── nativeView.rt.v029.js │ ├── non-breaking-space.rt │ ├── non-breaking-space.rt.js │ ├── propTemplates │ │ ├── implicitTemplate.rt │ │ ├── implicitTemplate.rt.js │ │ ├── siblingTemplates.rt │ │ ├── siblingTemplates.rt.js │ │ ├── simpleTemplate.rt │ │ ├── simpleTemplate.rt.js │ │ ├── templateInScope.rt │ │ ├── templateInScope.rt.js │ │ ├── twoTemplates.rt │ │ └── twoTemplates.rt.js │ ├── props-class.rt │ ├── props-class.rt.html │ ├── props.rt │ ├── props.rt.html │ ├── repeat-literal-collection.rt │ ├── repeat-literal-collection.rt.html │ ├── repeat-with-index.rt │ ├── repeat-with-index.rt.js │ ├── repeat.rt │ ├── repeat.rt.js │ ├── require.rt │ ├── require.rt.amd.js │ ├── require.rt.commonjs.js │ ├── require.rt.es6.js │ ├── require.rt.globals.js │ ├── require.rt.js │ ├── require.rt.typescript.ts │ ├── rt-class.rt │ ├── rt-class.rt.html │ ├── scope-evaluated-after-if.rt │ ├── scope-evaluated-after-if.rt.html │ ├── scope-evaluated-after-repeat.rt │ ├── scope-evaluated-after-repeat.rt.html │ ├── scope-evaluated-after-repeat2.rt │ ├── scope-evaluated-after-repeat2.rt.html │ ├── scope-obj.rt │ ├── scope-obj.rt.html │ ├── scope-reserved-tokens.rt │ ├── scope-reserved-tokens.rt.html │ ├── scope-trailing-semicolon.rt │ ├── scope-trailing-semicolon.rt.html │ ├── scope-variable-references.rt │ ├── scope-variable-references.rt.html │ ├── scope.rt │ ├── scope.rt.html │ ├── simple.js │ ├── simple.jsrt │ ├── stateless.rt │ ├── stateless.rt.js │ ├── style-vendor-prefix.rt │ ├── style-vendor-prefix.rt.js │ ├── style.rt │ ├── style.rt.html │ ├── svg.rt │ ├── svg.rt.html │ ├── test.rt │ ├── test.rt.js │ ├── virtual.rt │ ├── virtual.rt.html │ ├── virtual.rt.js │ ├── whitespace.rt │ └── whitespace.rt.js └── src │ ├── .eslintrc │ ├── fsUtil.unit.js │ ├── rt-html-valid.unit.js │ ├── rt.invalid.unit.js │ ├── rt.valid.unit.js │ ├── rtStyle.unit.js │ ├── shell.unit.js │ ├── utils.unit.js │ └── utils │ └── testUtils.js └── wallaby.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/README.md -------------------------------------------------------------------------------- /bin/rt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/bin/rt.js -------------------------------------------------------------------------------- /docs/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/docs/cli.md -------------------------------------------------------------------------------- /docs/integrations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/docs/integrations.md -------------------------------------------------------------------------------- /docs/intellij-es6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/docs/intellij-es6.png -------------------------------------------------------------------------------- /docs/native.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/docs/native.md -------------------------------------------------------------------------------- /fiddle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/fiddle.html -------------------------------------------------------------------------------- /home.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/home.config.js -------------------------------------------------------------------------------- /img/github-fork-me.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/img/github-fork-me.png -------------------------------------------------------------------------------- /img/icons-footer-sab5af31545.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/img/icons-footer-sab5af31545.png -------------------------------------------------------------------------------- /img/logo-rt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/img/logo-rt.svg -------------------------------------------------------------------------------- /img/samples/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/img/samples/delete.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/package.json -------------------------------------------------------------------------------- /playground.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground.config.js -------------------------------------------------------------------------------- /playground/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/.eslintrc -------------------------------------------------------------------------------- /playground/CMLint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/CMLint.js -------------------------------------------------------------------------------- /playground/CodeMirrorEditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/CodeMirrorEditor.js -------------------------------------------------------------------------------- /playground/CodeMirrorViewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/CodeMirrorViewer.js -------------------------------------------------------------------------------- /playground/aceEditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/aceEditor.js -------------------------------------------------------------------------------- /playground/css/fiddle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/css/fiddle.css -------------------------------------------------------------------------------- /playground/css/home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/css/home.css -------------------------------------------------------------------------------- /playground/css/playground.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/css/playground.css -------------------------------------------------------------------------------- /playground/dist/fiddle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/dist/fiddle.min.js -------------------------------------------------------------------------------- /playground/dist/home.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/dist/home.min.js -------------------------------------------------------------------------------- /playground/dist/rt-main.browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/dist/rt-main.browser.js -------------------------------------------------------------------------------- /playground/dist/rt-main.browser.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/dist/rt-main.browser.min.js -------------------------------------------------------------------------------- /playground/examples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/examples.js -------------------------------------------------------------------------------- /playground/examples.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/examples.rt -------------------------------------------------------------------------------- /playground/examples.rt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/examples.rt.js -------------------------------------------------------------------------------- /playground/fiddle-main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/fiddle-main.js -------------------------------------------------------------------------------- /playground/fiddle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/fiddle.js -------------------------------------------------------------------------------- /playground/fiddle.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/fiddle.rt -------------------------------------------------------------------------------- /playground/fiddle.rt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/fiddle.rt.js -------------------------------------------------------------------------------- /playground/home-main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/home-main.js -------------------------------------------------------------------------------- /playground/libs/ace-builds-1.1.8/src-min-noconflict/ace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/libs/ace-builds-1.1.8/src-min-noconflict/ace.js -------------------------------------------------------------------------------- /playground/libs/ace-builds-1.1.8/src-min-noconflict/mode-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/libs/ace-builds-1.1.8/src-min-noconflict/mode-html.js -------------------------------------------------------------------------------- /playground/libs/ace-builds-1.1.8/src-min-noconflict/mode-javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/libs/ace-builds-1.1.8/src-min-noconflict/mode-javascript.js -------------------------------------------------------------------------------- /playground/libs/ace-builds-1.1.8/src-min-noconflict/mode-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/libs/ace-builds-1.1.8/src-min-noconflict/mode-json.js -------------------------------------------------------------------------------- /playground/libs/ace-builds-1.1.8/src-min-noconflict/theme-solarized_light.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/libs/ace-builds-1.1.8/src-min-noconflict/theme-solarized_light.js -------------------------------------------------------------------------------- /playground/libs/ace-builds-1.1.8/src-min/ace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/libs/ace-builds-1.1.8/src-min/ace.js -------------------------------------------------------------------------------- /playground/libs/ace-builds-1.1.8/src-min/mode-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/libs/ace-builds-1.1.8/src-min/mode-html.js -------------------------------------------------------------------------------- /playground/libs/ace-builds-1.1.8/src-min/mode-javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/libs/ace-builds-1.1.8/src-min/mode-javascript.js -------------------------------------------------------------------------------- /playground/libs/ace-builds-1.1.8/src-min/mode-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/libs/ace-builds-1.1.8/src-min/mode-json.js -------------------------------------------------------------------------------- /playground/libs/bootstrap/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/libs/bootstrap/bootstrap.js -------------------------------------------------------------------------------- /playground/libs/bootstrap/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/libs/bootstrap/bootstrap.min.js -------------------------------------------------------------------------------- /playground/libs/codemirror-4.8/addon/display/panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/libs/codemirror-4.8/addon/display/panel.js -------------------------------------------------------------------------------- /playground/libs/codemirror-4.8/addon/hint/css-hint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/libs/codemirror-4.8/addon/hint/css-hint.js -------------------------------------------------------------------------------- /playground/libs/codemirror-4.8/addon/hint/html-hint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/libs/codemirror-4.8/addon/hint/html-hint.js -------------------------------------------------------------------------------- /playground/libs/codemirror-4.8/addon/hint/javascript-hint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/libs/codemirror-4.8/addon/hint/javascript-hint.js -------------------------------------------------------------------------------- /playground/libs/codemirror-4.8/addon/hint/show-hint.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/libs/codemirror-4.8/addon/hint/show-hint.css -------------------------------------------------------------------------------- /playground/libs/codemirror-4.8/addon/hint/show-hint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/libs/codemirror-4.8/addon/hint/show-hint.js -------------------------------------------------------------------------------- /playground/libs/codemirror-4.8/addon/hint/xml-hint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/libs/codemirror-4.8/addon/hint/xml-hint.js -------------------------------------------------------------------------------- /playground/libs/codemirror-4.8/addon/lint/lint.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/libs/codemirror-4.8/addon/lint/lint.css -------------------------------------------------------------------------------- /playground/libs/codemirror-4.8/addon/runmode/runmode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/libs/codemirror-4.8/addon/runmode/runmode.js -------------------------------------------------------------------------------- /playground/libs/codemirror-4.8/lib/codemirror.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/libs/codemirror-4.8/lib/codemirror.css -------------------------------------------------------------------------------- /playground/libs/codemirror-4.8/lib/codemirror.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/libs/codemirror-4.8/lib/codemirror.js -------------------------------------------------------------------------------- /playground/libs/codemirror-4.8/mode/css/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/libs/codemirror-4.8/mode/css/css.js -------------------------------------------------------------------------------- /playground/libs/codemirror-4.8/mode/htmlmixed/htmlmixed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/libs/codemirror-4.8/mode/htmlmixed/htmlmixed.js -------------------------------------------------------------------------------- /playground/libs/codemirror-4.8/mode/javascript/javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/libs/codemirror-4.8/mode/javascript/javascript.js -------------------------------------------------------------------------------- /playground/libs/codemirror-4.8/mode/xml/xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/libs/codemirror-4.8/mode/xml/xml.js -------------------------------------------------------------------------------- /playground/libs/codemirror-4.8/theme/solarized.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/libs/codemirror-4.8/theme/solarized.css -------------------------------------------------------------------------------- /playground/libs/requirejs-plugins/json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/libs/requirejs-plugins/json.js -------------------------------------------------------------------------------- /playground/libs/requirejs-plugins/json.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/libs/requirejs-plugins/json.min.js -------------------------------------------------------------------------------- /playground/libs/requirejs-plugins/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/libs/requirejs-plugins/text.js -------------------------------------------------------------------------------- /playground/libs/requirejs-plugins/text.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/libs/requirejs-plugins/text.min.js -------------------------------------------------------------------------------- /playground/playground-fiddle.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/playground-fiddle.rt -------------------------------------------------------------------------------- /playground/playground-fiddle.rt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/playground-fiddle.rt.js -------------------------------------------------------------------------------- /playground/playground.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/playground.js -------------------------------------------------------------------------------- /playground/playground.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/playground.rt -------------------------------------------------------------------------------- /playground/playground.rt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/playground.rt.js -------------------------------------------------------------------------------- /playground/rt-main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/rt-main.js -------------------------------------------------------------------------------- /playground/samples/hello.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/samples/hello.code -------------------------------------------------------------------------------- /playground/samples/hello.rt: -------------------------------------------------------------------------------- 1 |

Hello world

2 | -------------------------------------------------------------------------------- /playground/samples/rt-if.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/samples/rt-if.code -------------------------------------------------------------------------------- /playground/samples/rt-if.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/samples/rt-if.rt -------------------------------------------------------------------------------- /playground/samples/rt-import.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/samples/rt-import.rt -------------------------------------------------------------------------------- /playground/samples/rt-props.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/samples/rt-props.code -------------------------------------------------------------------------------- /playground/samples/rt-props.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/samples/rt-props.rt -------------------------------------------------------------------------------- /playground/samples/rt-repeat.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/samples/rt-repeat.code -------------------------------------------------------------------------------- /playground/samples/rt-repeat.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/samples/rt-repeat.rt -------------------------------------------------------------------------------- /playground/samples/rt-require.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/samples/rt-require.rt -------------------------------------------------------------------------------- /playground/samples/todo.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/samples/todo.code -------------------------------------------------------------------------------- /playground/samples/todo.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/samples/todo.rt -------------------------------------------------------------------------------- /playground/samples/todo2.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/samples/todo2.code -------------------------------------------------------------------------------- /playground/samples/todo2.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/samples/todo2.rt -------------------------------------------------------------------------------- /playground/samples/weather.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/samples/weather.code -------------------------------------------------------------------------------- /playground/samples/weather.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/playground/samples/weather.rt -------------------------------------------------------------------------------- /sample/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/sample/.eslintrc -------------------------------------------------------------------------------- /sample/ImageSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/sample/ImageSearch.js -------------------------------------------------------------------------------- /sample/ImageSearch.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/sample/ImageSearch.rt -------------------------------------------------------------------------------- /sample/ImageSearch.rt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/sample/ImageSearch.rt.js -------------------------------------------------------------------------------- /sample/InfiniteScroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/sample/InfiniteScroll.js -------------------------------------------------------------------------------- /sample/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/sample/index.html -------------------------------------------------------------------------------- /sample/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/sample/main.js -------------------------------------------------------------------------------- /sample/sample.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/sample/sample.css -------------------------------------------------------------------------------- /src/RTCodeError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/src/RTCodeError.js -------------------------------------------------------------------------------- /src/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/src/api.js -------------------------------------------------------------------------------- /src/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/src/cli.js -------------------------------------------------------------------------------- /src/context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/src/context.js -------------------------------------------------------------------------------- /src/formatters/json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/src/formatters/json.js -------------------------------------------------------------------------------- /src/formatters/stylish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/src/formatters/stylish.js -------------------------------------------------------------------------------- /src/fsUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/src/fsUtil.js -------------------------------------------------------------------------------- /src/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/src/options.js -------------------------------------------------------------------------------- /src/reactDOMSupport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/src/reactDOMSupport.js -------------------------------------------------------------------------------- /src/reactNativeSupport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/src/reactNativeSupport.js -------------------------------------------------------------------------------- /src/reactPropTemplates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/src/reactPropTemplates.js -------------------------------------------------------------------------------- /src/reactSupport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/src/reactSupport.js -------------------------------------------------------------------------------- /src/reactTemplates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/src/reactTemplates.js -------------------------------------------------------------------------------- /src/rt-style-support-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/src/rt-style-support-data.js -------------------------------------------------------------------------------- /src/rtStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/src/rtStyle.js -------------------------------------------------------------------------------- /src/shell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/src/shell.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/src/utils.js -------------------------------------------------------------------------------- /test/data/autobind.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/autobind.rt -------------------------------------------------------------------------------- /test/data/autobind.rt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/autobind.rt.js -------------------------------------------------------------------------------- /test/data/className.rt: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /test/data/className.rt.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /test/data/comment.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/comment.rt -------------------------------------------------------------------------------- /test/data/comment.rt.amd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/comment.rt.amd.js -------------------------------------------------------------------------------- /test/data/comment.rt.es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/comment.rt.es6.js -------------------------------------------------------------------------------- /test/data/concat.rt: -------------------------------------------------------------------------------- 1 |
Hello RT!{React.DOM.span({},'test')}
2 | -------------------------------------------------------------------------------- /test/data/concat.rt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/concat.rt.html -------------------------------------------------------------------------------- /test/data/custom-element.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/custom-element.rt -------------------------------------------------------------------------------- /test/data/custom-element.rt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/custom-element.rt.html -------------------------------------------------------------------------------- /test/data/div.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/div.rt -------------------------------------------------------------------------------- /test/data/div.rt.15.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/div.rt.15.js -------------------------------------------------------------------------------- /test/data/div.rt.amd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/div.rt.amd.js -------------------------------------------------------------------------------- /test/data/div.rt.commonjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/div.rt.commonjs.js -------------------------------------------------------------------------------- /test/data/div.rt.es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/div.rt.es6.js -------------------------------------------------------------------------------- /test/data/div.rt.globals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/div.rt.globals.js -------------------------------------------------------------------------------- /test/data/div.rt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/div.rt.js -------------------------------------------------------------------------------- /test/data/div.rt.typescript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/div.rt.typescript.ts -------------------------------------------------------------------------------- /test/data/eval.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/eval.rt -------------------------------------------------------------------------------- /test/data/eval.rt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/eval.rt.html -------------------------------------------------------------------------------- /test/data/if-with-scope/valid-if-scope.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/if-with-scope/valid-if-scope.rt -------------------------------------------------------------------------------- /test/data/if-with-scope/valid-if-scope.rt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/if-with-scope/valid-if-scope.rt.js -------------------------------------------------------------------------------- /test/data/import.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/import.rt -------------------------------------------------------------------------------- /test/data/import.rt.amd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/import.rt.amd.js -------------------------------------------------------------------------------- /test/data/import.rt.commonjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/import.rt.commonjs.js -------------------------------------------------------------------------------- /test/data/import.rt.es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/import.rt.es6.js -------------------------------------------------------------------------------- /test/data/import.rt.globals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/import.rt.globals.js -------------------------------------------------------------------------------- /test/data/import.rt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/import.rt.js -------------------------------------------------------------------------------- /test/data/import.rt.typescript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/import.rt.typescript.ts -------------------------------------------------------------------------------- /test/data/include.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/include.rt -------------------------------------------------------------------------------- /test/data/include.rt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/include.rt.html -------------------------------------------------------------------------------- /test/data/inputs.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/inputs.rt -------------------------------------------------------------------------------- /test/data/inputs.rt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/inputs.rt.js -------------------------------------------------------------------------------- /test/data/invalid/if-with-scope/invalid-if-scope-1.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/invalid/if-with-scope/invalid-if-scope-1.rt -------------------------------------------------------------------------------- /test/data/invalid/if-with-scope/invalid-if-scope-2.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/invalid/if-with-scope/invalid-if-scope-2.rt -------------------------------------------------------------------------------- /test/data/invalid/if-with-scope/invalid-if-scope-3.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/invalid/if-with-scope/invalid-if-scope-3.rt -------------------------------------------------------------------------------- /test/data/invalid/if-with-scope/invalid-if-scope-4.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/invalid/if-with-scope/invalid-if-scope-4.rt -------------------------------------------------------------------------------- /test/data/invalid/if-with-scope/invalid-if-scope-5.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/invalid/if-with-scope/invalid-if-scope-5.rt -------------------------------------------------------------------------------- /test/data/invalid/invalid-autobind.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/invalid/invalid-autobind.rt -------------------------------------------------------------------------------- /test/data/invalid/invalid-brace.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/invalid/invalid-brace.rt -------------------------------------------------------------------------------- /test/data/invalid/invalid-exp.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/invalid/invalid-exp.rt -------------------------------------------------------------------------------- /test/data/invalid/invalid-html.rt: -------------------------------------------------------------------------------- 1 |
2 |
3 | -------------------------------------------------------------------------------- /test/data/invalid/invalid-lambda.rt: -------------------------------------------------------------------------------- 1 |
2 |
3 | -------------------------------------------------------------------------------- /test/data/invalid/invalid-repeat-1.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/invalid/invalid-repeat-1.rt -------------------------------------------------------------------------------- /test/data/invalid/invalid-repeat-2.rt: -------------------------------------------------------------------------------- 1 |
{a}
2 | -------------------------------------------------------------------------------- /test/data/invalid/invalid-rt-import-1.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/invalid/invalid-rt-import-1.rt -------------------------------------------------------------------------------- /test/data/invalid/invalid-rt-import-2.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/invalid/invalid-rt-import-2.rt -------------------------------------------------------------------------------- /test/data/invalid/invalid-rt-import-3.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/invalid/invalid-rt-import-3.rt -------------------------------------------------------------------------------- /test/data/invalid/invalid-rt-import-4.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/invalid/invalid-rt-import-4.rt -------------------------------------------------------------------------------- /test/data/invalid/invalid-rt-require-1.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/invalid/invalid-rt-require-1.rt -------------------------------------------------------------------------------- /test/data/invalid/invalid-rt-require-2.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/invalid/invalid-rt-require-2.rt -------------------------------------------------------------------------------- /test/data/invalid/invalid-rt-require-duplicate.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/invalid/invalid-rt-require-duplicate.rt -------------------------------------------------------------------------------- /test/data/invalid/invalid-rt-template-1.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/invalid/invalid-rt-template-1.rt -------------------------------------------------------------------------------- /test/data/invalid/invalid-rt-template-2.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/invalid/invalid-rt-template-2.rt -------------------------------------------------------------------------------- /test/data/invalid/invalid-scope.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/invalid/invalid-scope.rt -------------------------------------------------------------------------------- /test/data/invalid/invalid-single-root.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/invalid/invalid-single-root.rt -------------------------------------------------------------------------------- /test/data/invalid/invalid-style-1.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/invalid/invalid-style-1.rt -------------------------------------------------------------------------------- /test/data/invalid/invalid-style-2.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/invalid/invalid-style-2.rt -------------------------------------------------------------------------------- /test/data/invalid/invalid-style-2.rt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/invalid/invalid-style-2.rt.js -------------------------------------------------------------------------------- /test/data/invalid/invalid-virtual-1.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/invalid/invalid-virtual-1.rt -------------------------------------------------------------------------------- /test/data/invalid/invalid-virtual-2.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/invalid/invalid-virtual-2.rt -------------------------------------------------------------------------------- /test/data/js-in-attr.rt: -------------------------------------------------------------------------------- 1 |
Hello RT!
-------------------------------------------------------------------------------- /test/data/js-in-attr.rt.html: -------------------------------------------------------------------------------- 1 |
Hello RT!
-------------------------------------------------------------------------------- /test/data/lambda.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/lambda.rt -------------------------------------------------------------------------------- /test/data/lambda.rt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/lambda.rt.html -------------------------------------------------------------------------------- /test/data/native/listViewAndCustomTemplate.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/native/listViewAndCustomTemplate.rt -------------------------------------------------------------------------------- /test/data/native/listViewAndCustomTemplate.rt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/native/listViewAndCustomTemplate.rt.js -------------------------------------------------------------------------------- /test/data/native/listViewAndCustomTemplate.rt.v029.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/native/listViewAndCustomTemplate.rt.v029.js -------------------------------------------------------------------------------- /test/data/native/listViewTemplate.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/native/listViewTemplate.rt -------------------------------------------------------------------------------- /test/data/native/listViewTemplate.rt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/native/listViewTemplate.rt.js -------------------------------------------------------------------------------- /test/data/native/listViewTemplate.rt.v029.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/native/listViewTemplate.rt.v029.js -------------------------------------------------------------------------------- /test/data/native/nativeView.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/native/nativeView.rt -------------------------------------------------------------------------------- /test/data/native/nativeView.rt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/native/nativeView.rt.js -------------------------------------------------------------------------------- /test/data/native/nativeView.rt.v029.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/native/nativeView.rt.v029.js -------------------------------------------------------------------------------- /test/data/non-breaking-space.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/non-breaking-space.rt -------------------------------------------------------------------------------- /test/data/non-breaking-space.rt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/non-breaking-space.rt.js -------------------------------------------------------------------------------- /test/data/propTemplates/implicitTemplate.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/propTemplates/implicitTemplate.rt -------------------------------------------------------------------------------- /test/data/propTemplates/implicitTemplate.rt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/propTemplates/implicitTemplate.rt.js -------------------------------------------------------------------------------- /test/data/propTemplates/siblingTemplates.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/propTemplates/siblingTemplates.rt -------------------------------------------------------------------------------- /test/data/propTemplates/siblingTemplates.rt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/propTemplates/siblingTemplates.rt.js -------------------------------------------------------------------------------- /test/data/propTemplates/simpleTemplate.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/propTemplates/simpleTemplate.rt -------------------------------------------------------------------------------- /test/data/propTemplates/simpleTemplate.rt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/propTemplates/simpleTemplate.rt.js -------------------------------------------------------------------------------- /test/data/propTemplates/templateInScope.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/propTemplates/templateInScope.rt -------------------------------------------------------------------------------- /test/data/propTemplates/templateInScope.rt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/propTemplates/templateInScope.rt.js -------------------------------------------------------------------------------- /test/data/propTemplates/twoTemplates.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/propTemplates/twoTemplates.rt -------------------------------------------------------------------------------- /test/data/propTemplates/twoTemplates.rt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/propTemplates/twoTemplates.rt.js -------------------------------------------------------------------------------- /test/data/props-class.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/props-class.rt -------------------------------------------------------------------------------- /test/data/props-class.rt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/props-class.rt.html -------------------------------------------------------------------------------- /test/data/props.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/props.rt -------------------------------------------------------------------------------- /test/data/props.rt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/props.rt.html -------------------------------------------------------------------------------- /test/data/repeat-literal-collection.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/repeat-literal-collection.rt -------------------------------------------------------------------------------- /test/data/repeat-literal-collection.rt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/repeat-literal-collection.rt.html -------------------------------------------------------------------------------- /test/data/repeat-with-index.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/repeat-with-index.rt -------------------------------------------------------------------------------- /test/data/repeat-with-index.rt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/repeat-with-index.rt.js -------------------------------------------------------------------------------- /test/data/repeat.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/repeat.rt -------------------------------------------------------------------------------- /test/data/repeat.rt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/repeat.rt.js -------------------------------------------------------------------------------- /test/data/require.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/require.rt -------------------------------------------------------------------------------- /test/data/require.rt.amd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/require.rt.amd.js -------------------------------------------------------------------------------- /test/data/require.rt.commonjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/require.rt.commonjs.js -------------------------------------------------------------------------------- /test/data/require.rt.es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/require.rt.es6.js -------------------------------------------------------------------------------- /test/data/require.rt.globals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/require.rt.globals.js -------------------------------------------------------------------------------- /test/data/require.rt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/require.rt.js -------------------------------------------------------------------------------- /test/data/require.rt.typescript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/require.rt.typescript.ts -------------------------------------------------------------------------------- /test/data/rt-class.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/rt-class.rt -------------------------------------------------------------------------------- /test/data/rt-class.rt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/rt-class.rt.html -------------------------------------------------------------------------------- /test/data/scope-evaluated-after-if.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/scope-evaluated-after-if.rt -------------------------------------------------------------------------------- /test/data/scope-evaluated-after-if.rt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/scope-evaluated-after-if.rt.html -------------------------------------------------------------------------------- /test/data/scope-evaluated-after-repeat.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/scope-evaluated-after-repeat.rt -------------------------------------------------------------------------------- /test/data/scope-evaluated-after-repeat.rt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/scope-evaluated-after-repeat.rt.html -------------------------------------------------------------------------------- /test/data/scope-evaluated-after-repeat2.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/scope-evaluated-after-repeat2.rt -------------------------------------------------------------------------------- /test/data/scope-evaluated-after-repeat2.rt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/scope-evaluated-after-repeat2.rt.html -------------------------------------------------------------------------------- /test/data/scope-obj.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/scope-obj.rt -------------------------------------------------------------------------------- /test/data/scope-obj.rt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/scope-obj.rt.html -------------------------------------------------------------------------------- /test/data/scope-reserved-tokens.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/scope-reserved-tokens.rt -------------------------------------------------------------------------------- /test/data/scope-reserved-tokens.rt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/scope-reserved-tokens.rt.html -------------------------------------------------------------------------------- /test/data/scope-trailing-semicolon.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/scope-trailing-semicolon.rt -------------------------------------------------------------------------------- /test/data/scope-trailing-semicolon.rt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/scope-trailing-semicolon.rt.html -------------------------------------------------------------------------------- /test/data/scope-variable-references.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/scope-variable-references.rt -------------------------------------------------------------------------------- /test/data/scope-variable-references.rt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/scope-variable-references.rt.html -------------------------------------------------------------------------------- /test/data/scope.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/scope.rt -------------------------------------------------------------------------------- /test/data/scope.rt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/scope.rt.html -------------------------------------------------------------------------------- /test/data/simple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/simple.js -------------------------------------------------------------------------------- /test/data/simple.jsrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/simple.jsrt -------------------------------------------------------------------------------- /test/data/stateless.rt: -------------------------------------------------------------------------------- 1 |
Hello {props.person}
2 | -------------------------------------------------------------------------------- /test/data/stateless.rt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/stateless.rt.js -------------------------------------------------------------------------------- /test/data/style-vendor-prefix.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/style-vendor-prefix.rt -------------------------------------------------------------------------------- /test/data/style-vendor-prefix.rt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/style-vendor-prefix.rt.js -------------------------------------------------------------------------------- /test/data/style.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/style.rt -------------------------------------------------------------------------------- /test/data/style.rt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/style.rt.html -------------------------------------------------------------------------------- /test/data/svg.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/svg.rt -------------------------------------------------------------------------------- /test/data/svg.rt.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/data/test.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/test.rt -------------------------------------------------------------------------------- /test/data/test.rt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/test.rt.js -------------------------------------------------------------------------------- /test/data/virtual.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/virtual.rt -------------------------------------------------------------------------------- /test/data/virtual.rt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/virtual.rt.html -------------------------------------------------------------------------------- /test/data/virtual.rt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/virtual.rt.js -------------------------------------------------------------------------------- /test/data/whitespace.rt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/whitespace.rt -------------------------------------------------------------------------------- /test/data/whitespace.rt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/data/whitespace.rt.js -------------------------------------------------------------------------------- /test/src/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/src/.eslintrc -------------------------------------------------------------------------------- /test/src/fsUtil.unit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/src/fsUtil.unit.js -------------------------------------------------------------------------------- /test/src/rt-html-valid.unit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/src/rt-html-valid.unit.js -------------------------------------------------------------------------------- /test/src/rt.invalid.unit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/src/rt.invalid.unit.js -------------------------------------------------------------------------------- /test/src/rt.valid.unit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/src/rt.valid.unit.js -------------------------------------------------------------------------------- /test/src/rtStyle.unit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/src/rtStyle.unit.js -------------------------------------------------------------------------------- /test/src/shell.unit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/src/shell.unit.js -------------------------------------------------------------------------------- /test/src/utils.unit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/src/utils.unit.js -------------------------------------------------------------------------------- /test/src/utils/testUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/test/src/utils/testUtils.js -------------------------------------------------------------------------------- /wallaby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-templates/HEAD/wallaby.js --------------------------------------------------------------------------------