From f09393d4f44dcb3ed8ab567313fff283e894e8f9 Mon Sep 17 00:00:00 2001 From: Leonid Logvinov Date: Wed, 31 Jan 2018 18:35:56 +0100 Subject: [PATCH 1/3] Ignore test files and markdown files changes on publish --- lerna.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lerna.json b/lerna.json index be294216a8..beab202583 100644 --- a/lerna.json +++ b/lerna.json @@ -2,6 +2,11 @@ "lerna": "2.5.1", "packages": ["packages/*"], "version": "independent", + "commands": { + "publish": { + "ignore": ["test/**/*", "*.md"] + } + }, "npmClient": "yarn", "useWorkspaces": true } From 0c6cbb66b111300c231cdfcd0789a528a11d7254 Mon Sep 17 00:00:00 2001 From: Leonid Logvinov Date: Thu, 1 Feb 2018 12:56:46 +0100 Subject: [PATCH 2/3] Lerna ignore scripts and lib --- lerna.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lerna.json b/lerna.json index beab202583..3bb3f215f1 100644 --- a/lerna.json +++ b/lerna.json @@ -4,7 +4,7 @@ "version": "independent", "commands": { "publish": { - "ignore": ["test/**/*", "*.md"] + "ignore": ["test/**/*", "*.md", "scripts", "lib"] } }, "npmClient": "yarn", From 890f414b5a02bf96dcd90fc4d3294229fa2273b9 Mon Sep 17 00:00:00 2001 From: Leonid Logvinov Date: Mon, 5 Feb 2018 11:25:59 +0100 Subject: [PATCH 3/3] Lerna-ignore tslint and tsconfig --- lerna.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lerna.json b/lerna.json index 3bb3f215f1..dbe42bcb17 100644 --- a/lerna.json +++ b/lerna.json @@ -4,7 +4,7 @@ "version": "independent", "commands": { "publish": { - "ignore": ["test/**/*", "*.md", "scripts", "lib"] + "ignore": ["test/**/*", "*.md", "scripts", "lib", "tslint.json", "tsconfig.json"] } }, "npmClient": "yarn",