Skip to content

Commit 9c23067

Browse files
committed
upgrade intellij idea version
1 parent dd52fcf commit 9c23067

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
Changelog
44
===============================================================================
5+
## 2022.3.0
6+
- feature: upgrade intellij idea
7+
58
## 2022.2.45
69
- fix: better support hbs tag with ember-template-imports
710

build.gradle.kts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ plugins {
55
// Java support
66
id("java")
77
// Kotlin support
8-
id("org.jetbrains.kotlin.jvm") version "1.6.21"
8+
id("org.jetbrains.kotlin.jvm") version "1.7.22"
99
// gradle-intellij-plugin - read more: https://github.com/JetBrains/gradle-intellij-plugin
10-
id("org.jetbrains.intellij") version "1.9.0"
10+
id("org.jetbrains.intellij") version "1.10.0"
1111
}
1212

1313

1414

1515
group = "com.emberjs"
16-
version = "2022.2.45"
16+
version = "2022.3.0"
1717

1818
// Configure project's dependencies
1919
repositories {
@@ -32,7 +32,7 @@ intellij {
3232

3333
// see https://www.jetbrains.com/intellij-repository/releases/
3434
// and https://www.jetbrains.com/intellij-repository/snapshots/
35-
version.set("2022.2")
35+
version.set("2022.3")
3636
type.set("IU")
3737

3838
downloadSources.set(!System.getenv().containsKey("CI"))
@@ -42,7 +42,7 @@ intellij {
4242
// Example: platformPlugins = com.intellij.java, com.jetbrains.php:203.4449.22
4343
//
4444
// com.dmarcotte.handlebars: see https://plugins.jetbrains.com/plugin/6884-handlebars-mustache/versions
45-
plugins.set(listOf("JavaScriptLanguage", "CSS", "yaml", "com.dmarcotte.handlebars:222.3345.108"))
45+
plugins.set(listOf("JavaScriptLanguage", "CSS", "yaml", "com.dmarcotte.handlebars:223.7571.117"))
4646

4747
sandboxDir.set(project.rootDir.canonicalPath + "/.sandbox")
4848
}

src/main/kotlin/com/emberjs/hbs/HbsFindUsagesProvider.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import com.intellij.psi.util.elementType
1616
class HbsFindUsagesProvider: FindUsagesProvider {
1717

1818
override fun getWordsScanner(): WordsScanner {
19-
val ID = TokenSet.create(HbTokenTypes.ID);
19+
val ID = TokenSet.create(HbTokenTypes.ID, HbTokenTypes.PARAM);
2020
return DefaultWordsScanner(HbLexer(), ID, HbTokenTypes.COMMENTS, HbTokenTypes.STRING_LITERALS)
2121
}
2222

0 commit comments

Comments
 (0)