From 0cac87856a46302e59733c72f6cd0e35aadd0dd0 Mon Sep 17 00:00:00 2001 From: Maxim Kadushkin Date: Thu, 28 Nov 2019 11:46:48 +0300 Subject: [PATCH] [build] skip copying sprite sources for deployment --- build/documenteditor.json | 6 ++++-- build/presentationeditor.json | 6 ++++-- build/spreadsheeteditor.json | 6 ++++-- 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/build/documenteditor.json b/build/documenteditor.json index 4576d80e6..5904b59e7 100644 --- a/build/documenteditor.json +++ b/build/documenteditor.json @@ -119,7 +119,8 @@ "expand": true, "cwd": "../apps/documenteditor/main/resources/img/", "src": [ - "**/*.{png,jpg,gif,ico}" + "**/*.{png,jpg,gif,ico}", + "!toolbar/*x/**/*" ], "dest": "../deploy/web-apps/apps/documenteditor/main/resources/img/" } @@ -129,7 +130,8 @@ "expand": true, "cwd": "../apps/common/main/resources/img/", "src": [ - "**/*.{png,jpg,gif}" + "**/*.{png,jpg,gif}", + "!toolbar/*x/**/*" ], "dest": "../deploy/web-apps/apps/documenteditor/main/resources/img/" } diff --git a/build/presentationeditor.json b/build/presentationeditor.json index 64a0c8ce9..425a55847 100644 --- a/build/presentationeditor.json +++ b/build/presentationeditor.json @@ -119,7 +119,8 @@ "expand": true, "cwd": "../apps/presentationeditor/main/resources/img/", "src": [ - "**/*.{png,jpg,gif,ico}" + "**/*.{png,jpg,gif,ico}", + "!toolbar/*x/**/*" ], "dest": "../deploy/web-apps/apps/presentationeditor/main/resources/img/" } @@ -129,7 +130,8 @@ "expand": true, "cwd": "../apps/common/main/resources/img/", "src": [ - "**/*.{png,jpg,gif}" + "**/*.{png,jpg,gif}", + "!toolbar/*x/**/*" ], "dest": "../deploy/web-apps/apps/presentationeditor/main/resources/img/" } diff --git a/build/spreadsheeteditor.json b/build/spreadsheeteditor.json index 8dca7d52c..eb4209512 100644 --- a/build/spreadsheeteditor.json +++ b/build/spreadsheeteditor.json @@ -119,7 +119,8 @@ "expand": true, "cwd": "../apps/spreadsheeteditor/main/resources/img/", "src": [ - "**/*.{png,jpg,gif,ico}" + "**/*.{png,jpg,gif,ico}", + "!toolbar/*x/**/*" ], "dest": "../deploy/web-apps/apps/spreadsheeteditor/main/resources/img/" } @@ -137,7 +138,8 @@ "expand": true, "cwd": "../apps/common/main/resources/img/", "src": [ - "**/*.{png,jpg,gif}" + "**/*.{png,jpg,gif}", + "!toolbar/*x/**/*" ], "dest": "../deploy/web-apps/apps/spreadsheeteditor/main/resources/img/" }