Bump file-saver from 1.3.8 to 2.0.5 (#4830)

* Bump file-saver from 1.3.8 to 2.0.5

Bumps [file-saver](https://github.com/eligrey/FileSaver.js) from 1.3.8 to 2.0.5.
- [Release notes](https://github.com/eligrey/FileSaver.js/releases)
- [Changelog](https://github.com/eligrey/FileSaver.js/blob/master/CHANGELOG.md)
- [Commits](https://github.com/eligrey/FileSaver.js/commits)

---
updated-dependencies:
- dependency-name: file-saver
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* fix paths

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Scott Bell <scott@traclabs.com>
This commit is contained in:
dependabot[bot] 2022-02-15 14:07:58 +01:00 committed by GitHub
parent 34b951f4c6
commit 55828af1ec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 5 additions and 5 deletions

View File

@ -25,7 +25,7 @@
"exports-loader": "0.7.0", "exports-loader": "0.7.0",
"express": "4.13.1", "express": "4.13.1",
"file-loader": "6.1.0", "file-loader": "6.1.0",
"file-saver": "1.3.8", "file-saver": "2.0.5",
"git-rev-sync": "1.4.0", "git-rev-sync": "1.4.0",
"html-loader": "0.5.5", "html-loader": "0.5.5",
"html2canvas": "1.4.1", "html2canvas": "1.4.1",

View File

@ -21,7 +21,7 @@
*****************************************************************************/ *****************************************************************************/
import CSV from 'comma-separated-values'; import CSV from 'comma-separated-values';
import {saveAs} from 'file-saver/FileSaver'; import {saveAs} from 'saveAs';
class CSVExporter { class CSVExporter {
export(rows, options) { export(rows, options) {

View File

@ -31,7 +31,7 @@ function replaceDotsWithUnderscores(filename) {
return filename.replace(regex, '_'); return filename.replace(regex, '_');
} }
import {saveAs} from 'file-saver/FileSaver'; import {saveAs} from 'saveAs';
import html2canvas from 'html2canvas'; import html2canvas from 'html2canvas';
import uuid from 'uuid'; import uuid from 'uuid';

View File

@ -20,7 +20,7 @@
* at runtime from the About dialog for additional information. * at runtime from the About dialog for additional information.
*****************************************************************************/ *****************************************************************************/
import {saveAs} from 'file-saver/FileSaver'; import {saveAs} from 'saveAs';
class JSONExporter { class JSONExporter {
export(obj, options) { export(obj, options) {

View File

@ -37,7 +37,7 @@ const config = {
alias: { alias: {
"@": path.join(__dirname, "src"), "@": path.join(__dirname, "src"),
"legacyRegistry": path.join(__dirname, "src/legacyRegistry"), "legacyRegistry": path.join(__dirname, "src/legacyRegistry"),
"saveAs": "file-saver", "saveAs": "file-saver/src/FileSaver.js",
"csv": "comma-separated-values", "csv": "comma-separated-values",
"EventEmitter": "eventemitter3", "EventEmitter": "eventemitter3",
"bourbon": "bourbon.scss", "bourbon": "bourbon.scss",