From ead5c383df30c94a83ee1d7e2c869cc5b23697a2 Mon Sep 17 00:00:00 2001 From: "andre.schmid" Date: Fri, 6 Aug 2021 16:04:50 +0100 Subject: Fix local build of onboarding-fe MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit dox-sequence-diagram-ui/package.json: - upgrades webpack-cli to 3.3.12, the actual version 2.0.14 is not compatible or recommended with the webpack version. openecomp-ui/package.json: - upgrades webpack-cli to 3.3.12, the actual version 2.0.14 is not compatible or recommended with the webpack version. - upgrades babel-core from 6.24.0 to 6.26.0. Code and config fixes: - fixes i18n openecomp-ui/src/nfvo-utils/i18n/i18n.js. The previous code was calling an non-existent attribute of the intl-format-cache. - fixes dox-sequence-diagram-ui path in openecomp-ui/webpack.config.js. The previous path configuration was causing compilation problems in the openecomp-ui (folder not found problem). Updates README.md with used procedure to run onboarding-fe. Change-Id: I28f7b78a1f30b5f904b3f7214f72e9741253622d Issue-ID: SDC-3661 Signed-off-by: André Schmid --- openecomp-ui/webpack.config.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'openecomp-ui/webpack.config.js') diff --git a/openecomp-ui/webpack.config.js b/openecomp-ui/webpack.config.js index f3b410e54e..be2e75efdb 100644 --- a/openecomp-ui/webpack.config.js +++ b/openecomp-ui/webpack.config.js @@ -86,10 +86,7 @@ module.exports = (env, argv) => { ], include: [ /resources/, - path.join( - __dirname, - 'node_modules/dox-sequence-diagram-ui/' - ), + path.join(__dirname, DEV ? '../dox-sequence-diagram-ui/' : 'node_modules/dox-sequence-diagram-ui/'), path.join(__dirname, 'node_modules/react-datepicker/'), path.join(__dirname, 'node_modules/react-select/'), path.join(__dirname, 'node_modules/onap-ui-common/'), -- cgit 1.2.3-korg amp;id=53c101d783b944da0323faeea46f13477cb5acff'>refslogtreecommitdiffstats
blob: 8471f55f9271ad66a252e9fb5bb23728597e800e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13