Skip to content

Commit 656db94

Browse files
authored
Merge pull request #26 from lightning-js/release/v1.2.1
Release - v1.2.1 - hotfix
2 parents 3f9682e + 1a0b765 commit 656db94

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"publisher": "lightningjs",
44
"displayName": "Lightning Blits",
55
"description": "Template syntax highlighting and code completion for the Lightning Blits framework",
6-
"version": "1.2.0",
6+
"version": "1.2.1",
77
"repository": {
88
"type": "git",
99
"url": "https://github.com/lightning-js/blits-vscode-extension.git"

src/completionProviders/templateTags.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,6 @@ const getCompletionItems = async (document, currentDoc, position, isBlits, fileP
344344

345345
if (isCursorInsideTemplate) {
346346
const componentData = await analyzeBlitsComponent(currentDoc, fileExt, filePath)
347-
console.log(JSON.stringify(componentData, null, 2))
348347
return await completionItems.componentNames.suggest(componentData)
349348
}
350349

src/parsers/ast.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
const parser = require('@babel/parser')
1919

2020
const parseAST = (code, fileExtension) => {
21-
const pluginList = ['objectRestSpread', 'optionalChaining', 'nullishCoalescingOperator', 'flow']
21+
const pluginList = ['objectRestSpread', 'optionalChaining', 'nullishCoalescingOperator']
2222

2323
if (fileExtension === 'ts' || fileExtension === 'tsx') {
2424
pluginList.push('typescript')

0 commit comments

Comments
 (0)