diff --git a/remote/package.json b/remote/package.json index 2c1ab5553e..b068531847 100644 --- a/remote/package.json +++ b/remote/package.json @@ -31,6 +31,7 @@ "ng2-charts": "^1.6.0", "node-pty": "0.10.1", "nsfw": "2.1.2", + "plotly.js-dist-min": "^1.53.0", "reflect-metadata": "^0.1.8", "rxjs": "5.4.0", "sanitize-html": "1.19.1", diff --git a/remote/web/package.json b/remote/web/package.json index 41d9899d7b..56222b4f8b 100644 --- a/remote/web/package.json +++ b/remote/web/package.json @@ -21,6 +21,7 @@ "jschardet": "2.3.0", "mark.js": "^8.11.1", "ng2-charts": "^1.6.0", + "plotly.js-dist-min": "^1.53.0", "reflect-metadata": "^0.1.8", "rxjs": "5.4.0", "sanitize-html": "1.19.1", diff --git a/remote/web/yarn.lock b/remote/web/yarn.lock index 2ca9970280..941da2deb6 100644 --- a/remote/web/yarn.lock +++ b/remote/web/yarn.lock @@ -259,6 +259,11 @@ number-is-nan@^1.0.0: resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0= +plotly.js-dist-min@^1.53.0: + version "1.58.4" + resolved "https://registry.yarnpkg.com/plotly.js-dist-min/-/plotly.js-dist-min-1.58.4.tgz#6a5b9baf1988b6aca6b20804503e4d70f3085186" + integrity sha512-9O3q1Wl5vL1diYwPE1AJQHtSBVqEGwUXCP+i6Xf6jA1iMFYUL4Rld5WCEcZXPtk/8owq6eqjQ78KEdxqRWHnfw== + postcss@^6.0.14: version "6.0.23" resolved "https://registry.yarnpkg.com/postcss/-/postcss-6.0.23.tgz#61c82cc328ac60e677645f979054eb98bc0e3324" diff --git a/remote/yarn.lock b/remote/yarn.lock index 12ff44a56d..a53ed530d6 100644 --- a/remote/yarn.lock +++ b/remote/yarn.lock @@ -639,6 +639,11 @@ picomatch@^2.2.1: resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad" integrity sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg== +plotly.js-dist-min@^1.53.0: + version "1.58.4" + resolved "https://registry.yarnpkg.com/plotly.js-dist-min/-/plotly.js-dist-min-1.58.4.tgz#6a5b9baf1988b6aca6b20804503e4d70f3085186" + integrity sha512-9O3q1Wl5vL1diYwPE1AJQHtSBVqEGwUXCP+i6Xf6jA1iMFYUL4Rld5WCEcZXPtk/8owq6eqjQ78KEdxqRWHnfw== + postcss@^6.0.14: version "6.0.23" resolved "https://registry.yarnpkg.com/postcss/-/postcss-6.0.23.tgz#61c82cc328ac60e677645f979054eb98bc0e3324" diff --git a/src/vs/code/browser/workbench/workbench-dev.html b/src/vs/code/browser/workbench/workbench-dev.html index ac542478c0..efc17dd0fb 100644 --- a/src/vs/code/browser/workbench/workbench-dev.html +++ b/src/vs/code/browser/workbench/workbench-dev.html @@ -90,7 +90,8 @@ 'jschardet': `${window.location.origin}/static/remote/web/node_modules/jschardet/dist/jschardet.min.js`, 'turndown': `${window.location.origin}/static/remote/web/node_modules/turndown/lib/turndown.browser.umd.js`, 'mark.js': `${window.location.origin}/static/remote/web/node_modules/mark.js/dist/mark.min.js`, - 'gridstack': `${window.location.origin}/static/node_modules/gridstack/dist/gridstack-h5.js` + 'gridstack': `${window.location.origin}/static/node_modules/gridstack/dist/gridstack-h5.js`, + 'plotly.js-dist-min': `${window.location.origin}/static/node_modules/plotly.js-dist-min/plotly.min.js` } }; diff --git a/src/vs/code/browser/workbench/workbench.html b/src/vs/code/browser/workbench/workbench.html index c8a9be5e85..8f6c1d6ac8 100644 --- a/src/vs/code/browser/workbench/workbench.html +++ b/src/vs/code/browser/workbench/workbench.html @@ -76,7 +76,8 @@ 'jschardet': `${window.location.origin}/static/node_modules/jschardet/dist/jschardet.min.js`, 'turndown': `${window.location.origin}/static/node_modules/turndown/lib/turndown.browser.umd.js`, 'mark.js': `${window.location.origin}/static/node_modules/mark.js/dist/mark.min.js`, - 'gridstack': `${window.location.origin}/static/node_modules/gridstack/dist/gridstack-h5.js` + 'gridstack': `${window.location.origin}/static/node_modules/gridstack/dist/gridstack-h5.js`, + 'plotly.js-dist-min': `${window.location.origin}/static/node_modules/plotly.js-dist-min/plotly.min.js` } };