diff options
author | Ahmedeldeeb50 <ahmed.eldeeb.ext@orange.com> | 2021-01-04 14:45:26 +0200 |
---|---|---|
committer | Singal, Kapil (ks220y) <ks220y@att.com> | 2021-01-04 10:26:15 -0500 |
commit | 63eb67ed6c6e36eb441b92ac0552f2e17ae5173a (patch) | |
tree | 404346cdc4136273e9dd6fcb616462a7942543ea /cds-ui/pom.xml | |
parent | 1e667fede760ec71288f1251c2b2fd8cd7e3e19e (diff) |
Create local build profile for designer-client
update loader logo
Issue-ID: CCSDK-3072, CCSDK-2433
Signed-off-by: Ahmedeldeeb50 <ahmed.eldeeb.ext@orange.com>
Change-Id: I47bdc099727342ca449a14085f648ae9aa07cf69
Diffstat (limited to 'cds-ui/pom.xml')
-rw-r--r-- | cds-ui/pom.xml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/cds-ui/pom.xml b/cds-ui/pom.xml index 3e7d5345e..5b1277923 100644 --- a/cds-ui/pom.xml +++ b/cds-ui/pom.xml @@ -44,5 +44,24 @@ limitations under the License. <properties> <npm.executable>npm</npm.executable> + <!-- Properties for CDS-GUI to npm run build:local --> + <npm.skipBuild>false</npm.skipBuild> + <npm.skipBuildLocal>true</npm.skipBuildLocal> </properties> + + <profiles> + <!-- Profile to either run npm build or npm build:local --> + <profile> + <id>npmLocal</id> + <activation> + <property> + <name>npmLocal</name> + </property> + </activation> + <properties> + <npm.skipBuild>true</npm.skipBuild> + <npm.skipBuildLocal>false</npm.skipBuildLocal> + </properties> + </profile> + </profiles> </project> |