Skip to content

Commit

Permalink
Fix rascal-vscode-dsl-lsp-server import
Browse files Browse the repository at this point in the history
  • Loading branch information
sungshik committed Dec 27, 2024
1 parent 3c5ff77 commit 7bc708c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/pico-dsl-extension/src/extension.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as vscode from 'vscode';
import { ParameterizedLanguageServer, VSCodeUriResolverServer, LanguageParameter } from '@usethesource/rascal-vscode-dsl-runtime';
import { ParameterizedLanguageServer, VSCodeUriResolverServer, LanguageParameter } from '@usethesource/rascal-vscode-dsl-lsp-server';
import { join } from 'path';

export function activate(context: vscode.ExtensionContext) {
Expand Down
4 changes: 2 additions & 2 deletions examples/pico-dsl-extension/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,12 @@ const extensionConfig = {
// we copy the jars to an an easy to predict location
from: path.resolve(
__dirname,
"node_modules/@usethesource/rascal-vscode-dsl-runtime/assets/jars/"
"node_modules/@usethesource/rascal-vscode-dsl-lsp-server/assets/jars/"
),
to: path.resolve(__dirname, "dist/rascal-lsp/"),
},
],
}),
],
};
module.exports = [ extensionConfig ];
module.exports = [ extensionConfig ];

0 comments on commit 7bc708c

Please sign in to comment.