Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update deps #684

Merged
merged 1 commit into from
May 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/webpack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ jobs:

- run: yarn install

- run: yarn jest
- run: yarn coveralls
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@

# Revision history:

### 3.9.5

* _Update npm dependencies to fix vulnerabilities_

### 3.9.4

* _Update npm dependencies to fix vulnerabilities_
Expand Down
2 changes: 1 addition & 1 deletion dist/excellentexport.js

Large diffs are not rendered by default.

120 changes: 60 additions & 60 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,60 +1,60 @@
{
"name": "excellentexport",
"version": "3.9.4",
"description": "Client side JavaScript export to Excel or CSV",
"license": "MIT",
"homepage": "http://jordiburgos.com",
"author": "Jordi Burgos <jordiburgos@gmail.com>",
"bugs": "https://github.com/jmaister/excellentexport/issues",
"repository": {
"type": "git",
"url": "git://github.com/jmaister/excellentexport.git"
},
"keywords": [
"excel",
"export",
"csv",
"javascript",
"client",
"side"
],
"scripts": {
"build": "webpack --config webpack.config.js --progress --mode development --watch",
"prod": "webpack --config webpack.config.js --progress --mode production",
"test": "jest --coverage && coveralls < coverage/lcov.info",
"jest": "jest --coverage",
"watch": "jest --watch"
},
"main": "dist/excellentexport.js",
"devDependencies": {
"@babel/core": "7.21.4",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-transform-flow-strip-types": "7.21.0",
"@babel/preset-env": "7.21.4",
"@types/jest": "29.5.1",
"@types/jest-environment-puppeteer": "5.0.3",
"@types/node": "18.15.13",
"babel-loader": "9.1.2",
"blob-polyfill": "7.0.20220408",
"coveralls": "3.1.1",
"cross-env": "7.0.3",
"html-loader": "4.2.0",
"jest": "29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-puppeteer": "8.0.6",
"puppeteer": "19.10.1",
"ts-jest": "29.1.0",
"ts-loader": "9.4.2",
"ts-node": "10.9.1",
"typescript": "5.0.4",
"webdriverio": "8.8.6",
"webpack": "5.80.0",
"webpack-cli": "5.0.2",
"webpack-dev-server": "4.13.3",
"webpack-node-externals": "3.0.0",
"xlsx": "0.18.5"
},
"resolutions": {
"json-schema": "0.4.0"
}
}
{
"name": "excellentexport",
"version": "3.9.5",
"description": "Client side JavaScript export to Excel or CSV",
"license": "MIT",
"homepage": "http://jordiburgos.com",
"author": "Jordi Burgos <jordiburgos@gmail.com>",
"bugs": "https://github.com/jmaister/excellentexport/issues",
"repository": {
"type": "git",
"url": "git://github.com/jmaister/excellentexport.git"
},
"keywords": [
"excel",
"export",
"csv",
"javascript",
"client",
"side"
],
"scripts": {
"build": "webpack --config webpack.config.js --progress --mode development --watch",
"prod": "webpack --config webpack.config.js --progress --mode production",
"coveralls": "jest --coverage && coveralls < coverage/lcov.info",
"test": "jest --coverage",
"watch": "jest --watch"
},
"main": "dist/excellentexport.js",
"devDependencies": {
"@babel/core": "7.22.1",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-transform-flow-strip-types": "7.21.0",
"@babel/preset-env": "7.22.4",
"@types/jest": "29.5.1",
"@types/jest-environment-puppeteer": "5.0.3",
"@types/node": "20.2.5",
"babel-loader": "9.1.2",
"blob-polyfill": "7.0.20220408",
"coveralls": "3.1.1",
"cross-env": "7.0.3",
"html-loader": "4.2.0",
"jest": "29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-puppeteer": "9.0.0",
"puppeteer": "20.4.0",
"ts-jest": "29.1.0",
"ts-loader": "9.4.3",
"ts-node": "10.9.1",
"typescript": "5.0.4",
"webdriverio": "8.10.5",
"webpack": "5.84.1",
"webpack-cli": "5.1.1",
"webpack-dev-server": "4.15.0",
"webpack-node-externals": "3.0.0",
"xlsx": "0.18.5"
},
"resolutions": {
"json-schema": "0.4.0"
}
}
2 changes: 1 addition & 1 deletion src/excellentexport.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export type ExcellentExportType = {

const ExcellentExport = function() {

const version = "3.9.4";
const version = "3.9.5";

/*
ExcellentExport.convert(options, sheets);
Expand Down
Loading