diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b295fbd..531b52c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,6 +10,7 @@ permissions: contents: read actions: read checks: write + packages: read jobs: build: @@ -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 diff --git a/README.md b/README.md index e8bbfac..5e44e26 100644 --- a/README.md +++ b/README.md @@ -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= ``` diff --git a/build.gradle.kts b/build.gradle.kts index 8f3d6a1..ad081f6 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -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") diff --git a/lsp/package.json b/lsp/package.json index a40201c..8ec4d09 100644 --- a/lsp/package.json +++ b/lsp/package.json @@ -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" } } \ No newline at end of file