From acd83c8f0698010ac0351efc4aa1abc28b529d99 Mon Sep 17 00:00:00 2001 From: Vladimir Volek Date: Mon, 4 Mar 2019 15:05:36 +0100 Subject: [PATCH 1/5] ignore cache --- .eslintignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.eslintignore b/.eslintignore index 94a7b116..a0bce5ea 100644 --- a/.eslintignore +++ b/.eslintignore @@ -1,6 +1,7 @@ public build coverage +cache node_modules src/flowtype/npm scripts/solidity/.* From 68f316080db248288f634cffb8c4d0793ac7d2c5 Mon Sep 17 00:00:00 2001 From: Vladimir Volek Date: Mon, 4 Mar 2019 15:14:40 +0100 Subject: [PATCH 2/5] do not cache node modules for now --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3046d582..17eae4c0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -6,7 +6,7 @@ variables: cache: key: ${CI_COMMIT_REF_SLUG} paths: - - node_modules + # - node_modules - ${CYPRESS_CACHE_FOLDER} stages: From f893df99223ae25da60c2d5fcb42c4fa21cd46b7 Mon Sep 17 00:00:00 2001 From: Vladimir Volek Date: Mon, 4 Mar 2019 15:15:56 +0100 Subject: [PATCH 3/5] Revert "do not cache node modules for now" This reverts commit 68f316080db248288f634cffb8c4d0793ac7d2c5. --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 17eae4c0..3046d582 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -6,7 +6,7 @@ variables: cache: key: ${CI_COMMIT_REF_SLUG} paths: - # - node_modules + - node_modules - ${CYPRESS_CACHE_FOLDER} stages: From 645bcaa665d7168dd4da4f581568d11563b33fc2 Mon Sep 17 00:00:00 2001 From: Vladimir Volek Date: Mon, 4 Mar 2019 15:25:54 +0100 Subject: [PATCH 4/5] do not lint cache on whole folder --- .eslintignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintignore b/.eslintignore index a0bce5ea..9df7fa5d 100644 --- a/.eslintignore +++ b/.eslintignore @@ -1,7 +1,7 @@ public build coverage -cache +cache/** node_modules src/flowtype/npm scripts/solidity/.* From 120edb52a30f2043ef9d7e74425a74db65348ab2 Mon Sep 17 00:00:00 2001 From: Vladimir Volek Date: Mon, 4 Mar 2019 15:30:33 +0100 Subject: [PATCH 5/5] Add prettier ignore --- .prettierignore | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .prettierignore diff --git a/.prettierignore b/.prettierignore new file mode 100644 index 00000000..9df7fa5d --- /dev/null +++ b/.prettierignore @@ -0,0 +1,8 @@ +public +build +coverage +cache/** +node_modules +src/flowtype/npm +scripts/solidity/.* +**/_old/* \ No newline at end of file