diff options
author | Liam Fallon <liam.fallon@est.tech> | 2022-02-17 09:02:50 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2022-02-17 09:02:50 +0000 |
commit | 23a917602f0600cc6a7a7739b4862ac23d602f0d (patch) | |
tree | 96adeb050d176cbe8a890a35e565d971a2c5c44c /runtime/ui-react-lib/rollup.config.js | |
parent | f17c64d91f74ec79f3472d2f903150576a6cbcef (diff) | |
parent | 90c824632523aa5994536185073188da43c3c0f9 (diff) |
Merge "Remove Clamp GUI from Clamp Repo"
Diffstat (limited to 'runtime/ui-react-lib/rollup.config.js')
-rwxr-xr-x | runtime/ui-react-lib/rollup.config.js | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/runtime/ui-react-lib/rollup.config.js b/runtime/ui-react-lib/rollup.config.js deleted file mode 100755 index c671779c0..000000000 --- a/runtime/ui-react-lib/rollup.config.js +++ /dev/null @@ -1,48 +0,0 @@ -import babel from 'rollup-plugin-babel' -import commonjs from '@rollup/plugin-commonjs' -import postcss from 'rollup-plugin-postcss' -import resolve from '@rollup/plugin-node-resolve' -import external from 'rollup-plugin-peer-deps-external' -import img from '@rollup/plugin-image' - -import pkg from './package.json' - -export default { - input: './libIndex.js', - output: [ - { - file: pkg.main, - format: 'cjs', - sourcemap: true - }, - { - file: pkg.module, - format: 'es', - sourcemap: true - } - ], - plugins: [ - img(), - external(), - postcss({ - modules: true - }), - babel({ - exclude: 'node_modules/**', - presets: [ - - "@babel/preset-env", {}, - "@babel/preset-react", {} - ], - plugins: [ - [ - "@babel/plugin-proposal-class-properties", - { - "loose": true - } - ] - ] - }), - resolve({ preferBuiltins: true, mainFields: ['browser'] }) - ] -} |