From dbb23cf113d961fe308824a3d355942bbaf1337e Mon Sep 17 00:00:00 2001 From: DD Liu Date: Fri, 14 Jul 2017 11:31:55 -0400 Subject: [PATCH 1/3] update git ignore --- .gitignore | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 1bd6ef09..8c617a05 100644 --- a/.gitignore +++ b/.gitignore @@ -3,4 +3,8 @@ # NPM /node_modules -npm-* \ No newline at end of file +npm-* + +# Build +playground/* +build/* \ No newline at end of file From 4bd8343338a54dd4b1a205f959603ac2b5f5fa02 Mon Sep 17 00:00:00 2001 From: DD Liu Date: Tue, 18 Jul 2017 14:41:40 -0400 Subject: [PATCH 2/3] change export syntax --- src/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.js b/src/index.js index 5df3df46..d56db1b9 100644 --- a/src/index.js +++ b/src/index.js @@ -1,3 +1,3 @@ import PaintEditorComponent from './components/paint-editor.jsx'; -export {PaintEditorComponent as default}; +export default PaintEditorComponent; From 6ed35b314b13a872d6cb7b3d40847206dc512b39 Mon Sep 17 00:00:00 2001 From: DD Liu Date: Tue, 18 Jul 2017 14:42:26 -0400 Subject: [PATCH 3/3] newlines at ends --- .eslintignore | 2 +- .gitignore | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.eslintignore b/.eslintignore index 03380294..c13cc422 100644 --- a/.eslintignore +++ b/.eslintignore @@ -1,3 +1,3 @@ node_modules/* build/* -playground/ \ No newline at end of file +playground/ diff --git a/.gitignore b/.gitignore index 8c617a05..d82cb26f 100644 --- a/.gitignore +++ b/.gitignore @@ -7,4 +7,4 @@ npm-* # Build playground/* -build/* \ No newline at end of file +build/*