From e500e3cff88bcb92c184f86f925e43e6a41b3235 Mon Sep 17 00:00:00 2001 From: Bob Laskowski Date: Wed, 9 Sep 2020 22:50:22 -0500 Subject: [PATCH] fix: don't copy tests on build (#112) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 2cfe05b..dea482f 100644 --- a/package.json +++ b/package.json @@ -37,7 +37,7 @@ "scripts": { "prepublishOnly": "yarn build", "pretty-quick": "./bin/pretty-quick.js", - "build": "babel src -d dist --copy-files --ignore __tests__", + "build": "babel src -d dist --copy-files --no-copy-ignored --ignore '**/__tests__/*.js'", "test": "jest", "lint": "eslint . --ignore-path=.gitignore", "semantic-release": "semantic-release"