Skip to content

Commit 527ec3d

Browse files
authored
Merge pull request #40 from ContextMapper/adjust-to-new-org
adjust to new repo org
2 parents 81654b4 + 3f6cb7b commit 527ec3d

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ permissions:
1010
contents: read
1111
actions: read
1212
checks: write
13+
packages: read
1314

1415
jobs:
1516
build:
@@ -38,7 +39,7 @@ jobs:
3839

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

4344
- name: Plugin Linting
4445
run: ./gradlew ktlintCheck

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Make sure that the token includes the **package:read** permission.
2828

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

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ tasks {
117117
group = LifecycleBasePlugin.BUILD_GROUP
118118
dependsOn(npmInstall)
119119

120-
val packagePath = file("lsp/node_modules/@lstreckeisen/context-mapper-language-server")
120+
val packagePath = file("lsp/node_modules/@contextmapper/context-mapper-language-server")
121121
val sourcePath =
122122
if (Files.isSymbolicLink(packagePath.toPath())) { // for local development
123123
packagePath.toPath().toRealPath().resolve("cml-ls")

lsp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
"name": "context-mapper-intellij-plugin",
33
"private": true,
44
"dependencies": {
5-
"@lstreckeisen/context-mapper-language-server": "0.4.2-final-poc"
5+
"@contextmapper/context-mapper-language-server": "0.4.2"
66
}
77
}

0 commit comments

Comments
 (0)