From c7f993a3edaacffdb4baed7e9c697393f3a81d5a Mon Sep 17 00:00:00 2001 From: Bruno Thomas Date: Thu, 5 Aug 2021 10:49:47 +0200 Subject: [PATCH 1/3] [#2] removes ./ from package.json --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 8b2df1b..0c41cb0 100644 --- a/package.json +++ b/package.json @@ -2,8 +2,8 @@ "name": "jest-chain-transform", "version": "0.0.3", "description": "Support for multiple transform scripts of jest", - "main": "./lib/index.js", - "typings": "./lib/index.d.ts", + "main": "lib/index.js", + "typings": "lib/index.d.ts", "scripts": { "test": "srcipt/test.sh", "build": "tsc" From eca471d6038fb2c8e44e61564d78941b3c62b1d5 Mon Sep 17 00:00:00 2001 From: Bruno Thomas Date: Thu, 5 Aug 2021 10:50:36 +0200 Subject: [PATCH 2/3] adds webstorm .idea in gitignore --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 9aadc15..82fc16a 100644 --- a/.gitignore +++ b/.gitignore @@ -103,3 +103,6 @@ lib # TernJS port file .tern-port + +# for webstorm +.idea From f4dc47bc101a1758c8ac34edd3bd82351a4bdc05 Mon Sep 17 00:00:00 2001 From: Bruno Thomas Date: Thu, 5 Aug 2021 11:27:53 +0200 Subject: [PATCH 3/3] [#2] try with install script --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 0c41cb0..e5aaf9a 100644 --- a/package.json +++ b/package.json @@ -5,6 +5,7 @@ "main": "lib/index.js", "typings": "lib/index.d.ts", "scripts": { + "install": "npm run build", "test": "srcipt/test.sh", "build": "tsc" },