Merge pull request #1671 from guardicore/dependabot/npm_and_yarn/monkey/monkey_island/cc/ui/marked-4.0.10

Bump marked from 2.1.3 to 4.0.10 in /monkey/monkey_island/cc/ui
This commit is contained in:
Mike Salvatore 2022-03-02 08:59:10 -05:00 committed by GitHub
commit c6e80b6689
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 7 additions and 7 deletions

View File

@ -24,7 +24,7 @@ os: linux
install:
# Python
- pip install pipenv
- pip install pipenv --upgrade
# Install island and monkey requirements as they are needed by UT's
- pushd monkey/monkey_island
- pipenv sync --dev # This installs dependencies from lock

View File

@ -7578,9 +7578,9 @@
"dev": true
},
"marked": {
"version": "2.1.3",
"resolved": "https://registry.npmjs.org/marked/-/marked-2.1.3.tgz",
"integrity": "sha512-/Q+7MGzaETqifOMWYEA7HVMaZb4XbcRfaOzcSsHZEith83KGlvaSG33u0SKu89Mj5h+T8V2hM+8O45Qc5XTgwA=="
"version": "4.0.10",
"resolved": "https://registry.npmjs.org/marked/-/marked-4.0.10.tgz",
"integrity": "sha512-+QvuFj0nGgO970fySghXGmuw+Fd0gD2x3+MqCWLIPf5oxdv1Ka6b2q+z9RP01P/IaKPMEramy+7cNy/Lw8c3hw=="
},
"mathml-tag-names": {
"version": "2.1.3",

View File

@ -86,7 +86,7 @@
"filepond": "^4.30.3",
"jwt-decode": "^2.2.0",
"lodash": "^4.17.21",
"marked": "^2.1.3",
"marked": "^4.0.10",
"mui-datatables": "^3.7.8",
"normalize.css": "^8.0.0",
"pluralize": "^7.0.0",

View File

@ -1,6 +1,6 @@
import React from 'react';
import ReactTable from 'react-table';
import marked from 'marked';
import {marked} from 'marked';
class MitigationsComponent extends React.Component {

View File

@ -7,7 +7,7 @@ import {faRadiation} from '@fortawesome/free-solid-svg-icons/faRadiation';
import {faEye} from '@fortawesome/free-solid-svg-icons/faEye';
import {faEyeSlash} from '@fortawesome/free-solid-svg-icons/faEyeSlash';
import {faToggleOff} from '@fortawesome/free-solid-svg-icons/faToggleOff';
import marked from 'marked';
import {marked} from 'marked';
import ReportHeader, {ReportTypes} from './common/ReportHeader';
import {ScanStatus} from '../attack/techniques/Helpers';