Skip to content

Commit 54db5c2

Browse files
authored
Add overrides for remaining high severity vulnerabilities
1 parent 0849d92 commit 54db5c2

File tree

4 files changed

+3
-10
lines changed

4 files changed

+3
-10
lines changed

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
"form-data@>=4.0.0 <4.0.4": ">=4.0.4",
2424
"tar-fs@>=3.0.0 <3.1.1": ">=3.1.1",
2525
"ws@>=8.0.0 <8.17.1": ">=8.17.1",
26+
"braces@<3.0.3": "3.0.3",
2627
"cross-spawn": "7.0.6"
2728
}
2829
}

packages/devextreme-cli/package-lock.json

Lines changed: 0 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/devextreme-cli/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@
6363
"eslint-plugin-unused-imports": "^1.1.5",
6464
"eslint-plugin-vue": "^7.20.0",
6565
"eslint-stylish": "^0.2.0",
66-
"ip": "^1.1.9",
6766
"jest": "^29.7.0",
6867
"jest-image-snapshot": "^6.5.1",
6968
"prettier": "^2.8.8",

packages/devextreme-cli/testing/app-template.test.shared.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
const path = require('path');
22
const waitOn = require('wait-on');
3-
const ip = require('ip');
43

54
const getBrowser = require('./utils/puppeteer').getBrowser;
65
const { viewports, themes, layouts } = require('./constants');
76
const DevServer = require('./dev-server');
87

98
const defaultLayout = 'side-nav-outer-toolbar';
9+
const defaultHost = process.env.APP_TEMPLATE_HOST || process.env.HOST || '127.0.0.1';
1010

1111
module.exports = (env, { port = 8080, urls = {} } = {}) => {
1212
const diffSnapshotsDir = path.join('testing/__tests__/__diff_snapshots__', env.engine);
@@ -26,7 +26,7 @@ module.exports = (env, { port = 8080, urls = {} } = {}) => {
2626

2727
describe(layout, () => {
2828
const devServer = new DevServer(env, { port });
29-
const appUrl = `http://${ip.address()}:${port}/`;
29+
const appUrl = `http://${defaultHost}:${port}/`;
3030

3131
let browser;
3232
let page;

0 commit comments

Comments
 (0)