Skip to content

Commit

Permalink
v2.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
natelindev committed Jun 17, 2023
1 parent 0526d4a commit aac0372
Show file tree
Hide file tree
Showing 22 changed files with 5,380 additions and 1,423 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
## v2.0.4

**features**

- new option `useMultiGet` for `fetchCalendarObjects` and `fetchVCards` which controls the underlying fetching function to
better support fetching from providers which does not support `multiGet` functions

**improvements**

- improved documentation
- improved typescript types
- updated deps
- added `.mjs`,`.cjs`,`.min.mjs` and `.min.cjs` versions

## v2.0.3

**improvements**
Expand Down
51 changes: 26 additions & 25 deletions dist/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tsdav",
"version": "2.0.3",
"version": "2.0.4",
"description": "WebDAV, CALDAV, and CARDDAV client for Nodejs and the Browser",
"keywords": [
"dav",
Expand Down Expand Up @@ -31,7 +31,7 @@
"package.json"
],
"scripts": {
"build": "yarn -s clean && rollup -c rollup.config.js && copyfiles package.json LICENSE README.md ./dist && rimraf ./dist/ts",
"build": "yarn -s clean && rollup -c rollup.config.mjs && copyfiles package.json LICENSE README.md ./dist && rimraf ./dist/ts",
"clean": "rimraf dist*",
"lint": "eslint src --ext .ts",
"lintFix": "eslint src --ext .ts --fix",
Expand All @@ -49,41 +49,42 @@
},
"dependencies": {
"base-64": "1.0.0",
"cross-fetch": "3.1.5",
"cross-fetch": "3.1.6",
"debug": "4.3.4",
"xml-js": "1.6.11"
},
"devDependencies": {
"@rollup/plugin-commonjs": "22.0.1",
"@rollup/plugin-node-resolve": "13.1.3",
"@rollup/plugin-typescript": "8.3.3",
"@rollup/plugin-commonjs": "25.0.1",
"@rollup/plugin-node-resolve": "15.1.0",
"@rollup/plugin-typescript": "11.1.1",
"@types/base-64": "1.0.0",
"@types/debug": "4.1.7",
"@types/jest": "28.1.4",
"@types/node": "18.0.0",
"@typescript-eslint/eslint-plugin": "5.30.3",
"@typescript-eslint/parser": "5.18.0",
"@types/debug": "4.1.8",
"@types/jest": "29.5.2",
"@types/node": "20.3.1",
"@typescript-eslint/eslint-plugin": "5.59.11",
"@typescript-eslint/parser": "5.59.11",
"copyfiles": "2.4.1",
"cross-env": "7.0.3",
"dotenv": "16.0.1",
"eslint": "8.19.0",
"dotenv": "16.3.0",
"eslint": "8.43.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-module-utils": "2.7.3",
"eslint-plugin-import": "2.26.0",
"eslint-config-prettier": "8.8.0",
"eslint-module-utils": "2.8.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "4.2.1",
"jest": "28.1.2",
"prettier": "2.7.1",
"rimraf": "3.0.2",
"rollup": "2.75.7",
"rollup-plugin-dts": "4.2.2",
"jest": "29.5.0",
"prettier": "2.8.8",
"rimraf": "5.0.1",
"rollup": "3.25.1",
"rollup-plugin-dts": "5.3.0",
"rollup-plugin-node-builtins": "2.1.2",
"rollup-plugin-polyfill-node": "0.9.0",
"rollup-plugin-polyfill-node": "0.12.0",
"rollup-plugin-terser": "7.0.2",
"sort-package-json": "1.57.0",
"ts-jest": "28.0.5",
"typescript": "4.7.4"
"sort-package-json": "2.4.1",
"ts-jest": "29.1.0",
"tslib": "2.5.3",
"typescript": "5.1.3"
},
"engines": {
"node": ">=10"
Expand Down
Loading

1 comment on commit aac0372

@vercel
Copy link

@vercel vercel bot commented on aac0372 Jun 17, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

tsdav – ./

tsdav-llldar.vercel.app
tsdav-git-master-llldar.vercel.app
tsdav.vercel.app

Please sign in to comment.