Skip to content

Commit a761d37

Browse files
committed
Increase the version to publish the extension
1 parent c0ce8ff commit a761d37

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ Below is a list of all available snippets and the triggers of each one. The **
5050
| Trigger | Content |
5151
| -------: | ------- |
5252
| `fre→` | forEach loop in ES6 syntax `array.forEach(currentItem => {})`|
53-
| `fof→` | for ... of loop `for(let item of object) {}` |
54-
| `fin→` | for ... in loop `for(let item in object) {}` |
53+
| `fof→` | for ... of loop `for(const item of object) {}` |
54+
| `fin→` | for ... in loop `for(const item in object) {}` |
5555
| `anfn→` | creates an anonymous function `(params) => {}` |
5656
| `nfn→` | creates a named function `const add = (params) => {}` |
5757
| `dob→` | destructing object syntax `const {rename} = fs` |

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "JavaScriptSnippets",
33
"description": "Code snippets for JavaScript in ES6 syntax",
4-
"version": "1.4.1",
4+
"version": "1.5.0",
55
"displayName": "JavaScript (ES6) code snippets",
66
"publisher": "xabikos",
77
"icon": "images/javascript.png",

0 commit comments

Comments
 (0)