Skip to content

Commit d6bb196

Browse files
committed
Fix issue for undeclared var. Update metadata
1 parent cbc3d14 commit d6bb196

File tree

4 files changed

+13
-3
lines changed

4 files changed

+13
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project are documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.24.2] - 2023-10-16
9+
10+
### Changed
11+
12+
- Revert changes of 24.0. Issue found and requires investigation.
13+
814
## [0.24.0] - 2023-10-15
915

1016
### Added

package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,11 @@
77
},
88
"description": "View and edit all your snippets in one purty place. Yee-haw!",
99
"icon": "img/logo.png",
10-
"version": "0.24.0",
10+
<<<<<<< HEAD
11+
"version": "0.24.1",
12+
=======
13+
"version": "0.24.2",
14+
>>>>>>> eb29bf7 (Update metadata for reverting to v23 state)
1115
"engines": {
1216
"vscode": "^1.4.0",
1317
"node": ">=12.0.0"

src/snippets-fetcher.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ class SnippetsFetcher {
165165
}
166166

167167
function hasScopeField(array){
168-
has = false;
168+
let has = false;
169169

170170
const result = array.find(({ scope }) => scope !== undefined && scope !== "" );
171171

todo.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
1. Add formatting of `scope` content to ensure consistent formatting. If no spaces between words values, add one after the comma.
44
1. Is the `scope` field ever in a snippets file in an extension?
55
1. Refactor `language` field in *snippet-collection.js*. It only applies to user snippets if I remember correctly.
6-
1. This snippet extension - https://open-vsx.org/extension/hollowtree/vue-snippets - appears to cause an error.
6+
1. This snippet extension - https://open-vsx.org/extension/hollowtree/vue-snippets - appears to cause an error.
77
1. Refactor Extensions make more comprehensible. Particularly code around extension-related snippets and the view.
88
1. Show the shortcuts assigned to any snippets (via command 'insert snippet')?

0 commit comments

Comments
 (0)