Skip to content

Commit

Permalink
Increase the version to publish the extension
Browse files Browse the repository at this point in the history
  • Loading branch information
xabikos committed Sep 26, 2017
1 parent c0ce8ff commit a761d37
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ Below is a list of all available snippets and the triggers of each one. The **
| Trigger | Content |
| -------: | ------- |
| `fre→` | forEach loop in ES6 syntax `array.forEach(currentItem => {})`|
| `fof→` | for ... of loop `for(let item of object) {}` |
| `fin→` | for ... in loop `for(let item in object) {}` |
| `fof→` | for ... of loop `for(const item of object) {}` |
| `fin→` | for ... in loop `for(const item in object) {}` |
| `anfn→` | creates an anonymous function `(params) => {}` |
| `nfn→` | creates a named function `const add = (params) => {}` |
| `dob→` | destructing object syntax `const {rename} = fs` |
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "JavaScriptSnippets",
"description": "Code snippets for JavaScript in ES6 syntax",
"version": "1.4.1",
"version": "1.5.0",
"displayName": "JavaScript (ES6) code snippets",
"publisher": "xabikos",
"icon": "images/javascript.png",
Expand Down

0 comments on commit a761d37

Please sign in to comment.