From 4a2dc9a0dc00cdd09e5908cd21f61eec631d54e1 Mon Sep 17 00:00:00 2001 From: Dan Farrelly Date: Fri, 16 Dec 2016 19:06:01 -0500 Subject: [PATCH] Ignore babelrc to prevent errors when installed When installing in another project, babel will find this babelrc and might choose to use it for all files in the components package. This confuses the project's babel if any plugin, ex. stage-1 is not used and instead stage-0 is used. This should allow the consuming project to use whatever configuration they want when this package is installed. --- .npmignore | 1 + 1 file changed, 1 insertion(+) create mode 100644 .npmignore diff --git a/.npmignore b/.npmignore new file mode 100644 index 00000000..02ba1793 --- /dev/null +++ b/.npmignore @@ -0,0 +1 @@ +.babelrc