Skip to content

Commit d669440

Browse files
committed
update deps
1 parent f9e168c commit d669440

File tree

4 files changed

+63
-62
lines changed

4 files changed

+63
-62
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

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

5-
## [1.0.8] - 2024-01-20
5+
## [1.0.9] - 2024-01-21
66

77
- Option to exclude `.git` folders
88

package-lock.json

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

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vscode-archiver",
33
"displayName": "Archiver",
44
"description": "Workspace Folder Archiver",
5-
"version": "1.0.8",
5+
"version": "1.0.9",
66
"license": "MIT",
77
"publisher": "ecmel",
88
"author": {
@@ -28,6 +28,7 @@
2828
"workspace",
2929
"folder",
3030
"git",
31+
"degit",
3132
"multi-root ready"
3233
],
3334
"contributes": {
@@ -86,7 +87,7 @@
8687
"mocha": "^10.2.0",
8788
"mock-fs": "^5.2.0",
8889
"prettier": "^2.8.8",
89-
"rollup": "^4.9.5",
90+
"rollup": "^4.9.6",
9091
"rollup-plugin-cleandir": "^2.0.0",
9192
"sinon": "^17.0.1",
9293
"tslib": "^2.6.2",

src/provider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export async function archive() {
2525
ignoreFiles: [".gitignore"],
2626
});
2727

28-
const git = files.find((file) => file.startsWith(".git/"));
28+
const git = files.find((file) => file.includes(".git/"));
2929

3030
if (git) {
3131
const picked = await window.showQuickPick(["Yes", "No"], {

0 commit comments

Comments
 (0)