Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ permissions:
contents: read
actions: read
checks: write
packages: read

jobs:
build:
Expand Down Expand Up @@ -38,7 +39,7 @@ jobs:

- name: Create .npmrc
working-directory: lsp
run: echo -e "@lstreckeisen:registry=https://npm.pkg.github.com\n//npm.pkg.github.com/:_authToken=${{ secrets.NPM_TOKEN }}" > .npmrc
run: echo -e "@contextmapper:registry=https://npm.pkg.github.com\n//npm.pkg.github.com/:_authToken=${{ secrets.GITHUB_TOKEN }}" > .npmrc

- name: Plugin Linting
run: ./gradlew ktlintCheck
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Make sure that the token includes the **package:read** permission.

To configure the registry and authentication, add this configuration to the `.npmrc` file in your home directory.
```
@lstreckeisen:registry=https://npm.pkg.github.com
@contextmapper:registry=https://npm.pkg.github.com
//npm.pkg.github.com/:_authToken=<TOKEN>
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ tasks {
group = LifecycleBasePlugin.BUILD_GROUP
dependsOn(npmInstall)

val packagePath = file("lsp/node_modules/@lstreckeisen/context-mapper-language-server")
val packagePath = file("lsp/node_modules/@contextmapper/context-mapper-language-server")
val sourcePath =
if (Files.isSymbolicLink(packagePath.toPath())) { // for local development
packagePath.toPath().toRealPath().resolve("cml-ls")
Expand Down
2 changes: 1 addition & 1 deletion lsp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"name": "context-mapper-intellij-plugin",
"private": true,
"dependencies": {
"@lstreckeisen/context-mapper-language-server": "0.4.2-final-poc"
"@contextmapper/context-mapper-language-server": "0.4.2"
}
}