From 65210f29e6dfa103b4c008b0146f3ec525e68958 Mon Sep 17 00:00:00 2001 From: Limon Monte Date: Mon, 30 Mar 2020 12:40:22 -0700 Subject: [PATCH] fix: no need to copy package.json to dist (#196) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a3d489e..abfcf0c 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "description": "A Karma plugin. Launch any browser on SauceLabs!", "main": "./dist/index.js", "scripts": { - "build": "tsc -p src/ && cp package.json dist/", + "build": "tsc -p src", "run-example": "yarn build && yarn copy-dist-to-modules && yarn run-example-karma", "copy-dist-to-modules": "rm -rf node_modules/karma-sauce-launcher && mv dist/ node_modules/karma-sauce-launcher", "run-example-karma": "yarn karma start examples/karma.conf-ci.js"