From 00cef86cd73cf45d6790d32f2ef60cda581ff6e7 Mon Sep 17 00:00:00 2001 From: christianalfoni Date: Fri, 24 Apr 2015 14:07:12 +0200 Subject: [PATCH] Added build directory for development --- .gitignore | 4 ---- build/index.html | 8 ++++++++ build/test.js | 4 ++++ 3 files changed, 12 insertions(+), 4 deletions(-) create mode 100644 build/index.html create mode 100644 build/test.js diff --git a/.gitignore b/.gitignore index 85d23ba5..9daa8247 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,2 @@ .DS_Store -build/index.html -build/test.js -build/formsy-react.js -build/specs.js node_modules diff --git a/build/index.html b/build/index.html new file mode 100644 index 00000000..24eb24cb --- /dev/null +++ b/build/index.html @@ -0,0 +1,8 @@ + + + Formsy Test + + + + + \ No newline at end of file diff --git a/build/test.js b/build/test.js new file mode 100644 index 00000000..f8aee328 --- /dev/null +++ b/build/test.js @@ -0,0 +1,4 @@ +var React = require('react'); +var Formsy = require('./../src/main.js'); + +// Write your test code here \ No newline at end of file