Pablo Torres

Results 24 comments of Pablo Torres

**UPDATE** I have been trying to bundle our app with Webpack: After many errors of modules that couldn't be found I successfully fixed those errors and bundled our app with...

**UPDATE** I have been trying to fix these previous errors with no success. The error in the last comment (ng.module is not a function) have been fixed but when the...

**Update** I've been trying to use babel on the project using presets=@babel/env plugins=@babel/transform-runtime Obtained the following error: ![Screenshot from 2019-06-12 14-32-08](https://user-images.githubusercontent.com/35685689/59363246-27154800-8d35-11e9-9ce2-2d4401b4afa7.png)

**Update** This updated webpack.config.js still causing some errors when trying to import externals splunk modules: ``` var path = require('path'); const webpack = require('webpack'); //const UglifyJsPlugin = require('uglifyjs-webpack-plugin'); //var requirejsPlugin...

**Update** As mentioned in previous messages, using @babel/plugin-transform-runtime generated these require() statements ``` var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); var _regenerator = _interopRequireDefault(require("@babel/runtime/regenerator")); var _asyncToGenerator2 = _interopRequireDefault(require("@babel/runtime/helpers/asyncToGenerator")); var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck")); var...

**Update** I finally achieved to use the plugin `@babel/plugin-transform-runtime` as we were having trouble to make it work in our requireJs environment. - Install plugin external helpers `npm install --save-dev...

**Update** I finally achieved to transpile the app and make it compatible with IE11, The following plugins have been used in order to achieve the compatibility: **@babel/plugin-transform-classes @babel/plugin-transform-arrow-functions @babel/external-helpers babel-plugin-transform-async-to-promises...

**Update** - It has been updated to transpile current v3.10.0 app. - Destructuring assignments `var [x,y] = [0,1]` were causing some problems as its not compatible with IE, a new...

**Update** After some research to create this visualization I just found out that `wazuh-monitoring-3x` indices in Splunk don't have enough information about the agents unlike Elasticsearch `wazuh-monitoring-3x` indices- The information...

**Update** After many tries, I successfully achieved to load React(16.8.6) into our app and test that it's working correctly https://github.com/wazuh/wazuh-splunk/commit/c5186bea448bb4c27072e2d9f8b54d2d8fd4a228: As we are using AMD, in order to define React...