File tree Expand file tree Collapse file tree 2 files changed +2
-5
lines changed
src/main/kotlin/com/emberjs/glint Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -167,5 +167,5 @@ jobs:
167167 - uses : actions/upload-artifact@v4
168168 with :
169169 name : EmberExperimental.zip
170- path : ./build/distributions/EmberExperimental.js- *.zip
170+ path : ./build/distributions/intellij-emberjs-experimental *.zip
171171
Original file line number Diff line number Diff line change @@ -77,10 +77,7 @@ class GlintLspServerDescriptor(private val myProject: Project) : LspServerDescri
7777 return true
7878 }
7979 }
80- val glintPkg = NodeModuleManager .getInstance(project).collectVisibleNodeModules(workingDir).find { it.name == " @glint/core" }?.virtualFile
81- if (glintPkg == null ) {
82- return false
83- }
80+ val glintPkg = workingDir.findFileByRelativePath(" node_modules/@glint/core" ) ? : return false
8481 glintPkg.findFileByRelativePath(" bin/glint-language-server.js" ) ? : return false
8582 lastDir = workingDir
8683 return true
You can’t perform that action at this time.
0 commit comments