Skip to content

Commit 7bbe972

Browse files
committed
ported config to ts
1 parent 3dd0472 commit 7bbe972

File tree

5 files changed

+85
-131
lines changed

5 files changed

+85
-131
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
All notable changes to the extension will be documented in this file.
44

5+
## [1.1.1] - 2024-03-01
6+
7+
- Updated dependencies
8+
- Ported config to typescript
9+
510
## [1.1.0] - 2024-01-30
611

712
- Add file progress for long running archives

package-lock.json

Lines changed: 65 additions & 114 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@
7474
"prereset": "npm run clean",
7575
"reset": "npm install",
7676
"format": "prettier --ignore-path .gitignore -w --list-different .",
77-
"debug": "rollup -c -w",
78-
"build": "rollup -c --forceExit",
77+
"debug": "rollup -c --configPlugin typescript -w",
78+
"build": "rollup -c --configPlugin typescript --forceExit",
7979
"compile": "tsc -p ./ --outDir out --sourceMap true --module commonjs --moduleResolution node",
8080
"pretest": "npm run build && npm run compile",
8181
"test": "node ./out/test/runTest.js",
@@ -97,7 +97,7 @@
9797
"@types/ignore-walk": "^4.0.3",
9898
"@types/mocha": "^10.0.6",
9999
"@types/mock-fs": "^4.13.4",
100-
"@types/node": "^20.11.10",
100+
"@types/node": "^20.11.17",
101101
"@types/sinon": "^17.0.3",
102102
"@types/vscode": "^1.75.0",
103103
"@vscode/test-electron": "^2.3.9",
@@ -106,10 +106,10 @@
106106
"c8": "^9.1.0",
107107
"fast-glob": "^3.3.2",
108108
"ignore-walk": "^6.0.4",
109-
"mocha": "^10.2.0",
109+
"mocha": "^10.3.0",
110110
"mock-fs": "^5.2.0",
111111
"prettier": "^2.8.8",
112-
"rollup": "^4.9.6",
112+
"rollup": "^4.10.0",
113113
"rollup-plugin-cleandir": "^2.0.0",
114114
"sinon": "^17.0.1",
115115
"tslib": "^2.6.2",

0 commit comments

Comments
 (0)