Skip to content

Commit

Permalink
Upgrade @elastic/ems-client@8.5.3 (#763)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsanz authored Jul 24, 2024
1 parent 7492acf commit c5795b1
Show file tree
Hide file tree
Showing 3 changed files with 668 additions and 42 deletions.
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@
"html-webpack-plugin": "^5.5.0",
"husky": "^9.0.11",
"node-fetch": "^3.3.2",
"node-polyfill-webpack-plugin": "^4.0.0",
"process": "^0.11.10",
"resolve-url-loader": "5.0.0",
"style-loader": "^3.3.4",
"url": "^0.11.0",
Expand All @@ -44,7 +46,7 @@
},
"dependencies": {
"@elastic/datemath": "^5.0.3",
"@elastic/ems-client": "8.5.1",
"@elastic/ems-client": "8.5.3",
"@elastic/eui": "^93.0.0",
"@emotion/css": "^11.10.6",
"@mapbox/mapbox-gl-rtl-text": "^0.2.3",
Expand Down
4 changes: 4 additions & 0 deletions webpack.common.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ const path = require('path');
const CopyWebpackPlugin = require('copy-webpack-plugin');
const HTMLWebpackPlugin = require('html-webpack-plugin');
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
const webpack = require('webpack');

const ASSET_PATH = process.env.ASSET_PATH || '';

Expand Down Expand Up @@ -78,6 +79,9 @@ module.exports = {
},
},
plugins: [
new webpack.ProvidePlugin({
process: 'process/browser'
}),
new CleanWebpackPlugin({
cleanAfterEveryBuildPatterns: [
path.resolve(__dirname, 'build/release/icon*')
Expand Down
Loading

0 comments on commit c5795b1

Please sign in to comment.