Skip to content

Commit 04b88a2

Browse files
authored
Merge pull request #472 from ejarocki-cloudlinux/master
Set els-vue repo in Vue pages
2 parents f189600 + 80e52f6 commit 04b88a2

3 files changed

Lines changed: 20 additions & 20 deletions

File tree

docs/els-for-libraries/vite/README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ TuxCare provides ELS for Vite as an NPM package, hosted on a secure internal reg
3535

3636
```text
3737
registry=https://registry.npmjs.org/
38-
@els-js:registry=https://nexus.repo.tuxcare.com/repository/els-js/
39-
//nexus.repo.tuxcare.com/repository/els-js/:_auth=${TOKEN}
38+
@els-vue:registry=https://nexus.repo.tuxcare.com/repository/els-vue/
39+
//nexus.repo.tuxcare.com/repository/els-vue/:_auth=${TOKEN}
4040
```
4141

4242
:::warning
@@ -51,19 +51,19 @@ TuxCare provides ELS for Vite as an NPM package, hosted on a secure internal reg
5151

5252
```text
5353
"dependencies": {
54-
"vite": "npm:@els-js/vite@>=4.5.5-tuxcare.1"
54+
"vite": "npm:@els-vue/vite@>=4.5.5-tuxcare.1"
5555
},
5656
"overrides": {
57-
"vite@4.5.5": "npm:@els-js/vite@>=4.5.5-tuxcare.1"
57+
"vite@4.5.5": "npm:@els-vue/vite@>=4.5.5-tuxcare.1"
5858
}
5959
```
6060
6161
* **Option 2: TuxCare Patcher (Automated)**
6262
63-
Install the Patcher globally and run it. The TuxCare Patcher automatically detects the Vite version in your `package.json` and updates your `dependencies` and `overrides` to use the corresponding TuxCare `@els-js/*` packages.
63+
Install the Patcher globally and run it. The TuxCare Patcher automatically detects the Vite version in your `package.json` and updates your `dependencies` and `overrides` to use the corresponding TuxCare `@els-vue/*` packages.
6464
6565
```text
66-
npm install -g @els-js/tuxcare-patcher --userconfig ./.npmrc
66+
npm install -g @els-vue/tuxcare-patcher --userconfig ./.npmrc
6767
tuxcare-patch-js
6868
```
6969
@@ -79,10 +79,10 @@ TuxCare provides ELS for Vite as an NPM package, hosted on a secure internal reg
7979
8080
```text
8181
"dependencies": {
82-
"vite": "npm:@els-js/vite@>=4.5.5-tuxcare.1"
82+
"vite": "npm:@els-vue/vite@>=4.5.5-tuxcare.1"
8383
},
8484
"overrides": {
85-
"vite@4.5.5": "npm:@els-js/vite@>=4.5.5-tuxcare.1"
85+
"vite@4.5.5": "npm:@els-vue/vite@>=4.5.5-tuxcare.1"
8686
}
8787
```
8888

docs/els-for-libraries/vue-template-compiler/README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ TuxCare provides ELS for vue-template-compiler as an NPM package, hosted on a se
3535

3636
```text
3737
registry=https://registry.npmjs.org/
38-
@els-js:registry=https://nexus.repo.tuxcare.com/repository/els-js/
39-
//nexus.repo.tuxcare.com/repository/els-js/:_auth=${TOKEN}
38+
@els-vue:registry=https://nexus.repo.tuxcare.com/repository/els-vue/
39+
//nexus.repo.tuxcare.com/repository/els-vue/:_auth=${TOKEN}
4040
```
4141

4242
:::warning
@@ -51,19 +51,19 @@ TuxCare provides ELS for vue-template-compiler as an NPM package, hosted on a se
5151

5252
```text
5353
"dependencies": {
54-
"vue-template-compiler": "npm:@els-js/vue-template-compiler@>=2.6.11-tuxcare.1"
54+
"vue-template-compiler": "npm:@els-vue/vue-template-compiler@>=2.6.11-tuxcare.1"
5555
},
5656
"overrides": {
57-
"vue-template-compiler@2.6.11": "npm:@els-js/vue-template-compiler@>=2.6.11-tuxcare.1"
57+
"vue-template-compiler@2.6.11": "npm:@els-vue/vue-template-compiler@>=2.6.11-tuxcare.1"
5858
}
5959
```
6060
6161
* **Option 2: TuxCare Patcher (Automated)**
6262
63-
Install the Patcher globally and run it. The TuxCare Patcher automatically detects the vue-template-compiler version in your `package.json` and updates your `dependencies` and `overrides` to use the corresponding TuxCare `@els-js/*` packages.
63+
Install the Patcher globally and run it. The TuxCare Patcher automatically detects the vue-template-compiler version in your `package.json` and updates your `dependencies` and `overrides` to use the corresponding TuxCare `@els-vue/*` packages.
6464
6565
```text
66-
npm install -g @els-js/tuxcare-patcher --userconfig ./.npmrc
66+
npm install -g @els-vue/tuxcare-patcher --userconfig ./.npmrc
6767
tuxcare-patch-js
6868
```
6969
@@ -79,10 +79,10 @@ TuxCare provides ELS for vue-template-compiler as an NPM package, hosted on a se
7979
8080
```text
8181
"dependencies": {
82-
"vue-template-compiler": "npm:@els-js/vue-template-compiler@>=2.6.11-tuxcare.1"
82+
"vue-template-compiler": "npm:@els-vue/vue-template-compiler@>=2.6.11-tuxcare.1"
8383
},
8484
"overrides": {
85-
"vue-template-compiler@2.6.11": "npm:@els-js/vue-template-compiler@>=2.6.11-tuxcare.1"
85+
"vue-template-compiler@2.6.11": "npm:@els-vue/vue-template-compiler@>=2.6.11-tuxcare.1"
8686
}
8787
```
8888

docs/els-for-libraries/vue/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ TuxCare provides ELS for Vue as an NPM package, hosted on a secure internal regi
3535

3636
```text
3737
registry=https://registry.npmjs.org/
38-
@els-js:registry=https://nexus.repo.tuxcare.com/repository/els-js/
39-
//nexus.repo.tuxcare.com/repository/els-js/:_auth=${TOKEN}
38+
@els-vue:registry=https://nexus.repo.tuxcare.com/repository/els-vue/
39+
//nexus.repo.tuxcare.com/repository/els-vue/:_auth=${TOKEN}
4040
```
4141

4242
:::warning
@@ -47,10 +47,10 @@ Manually update your `package.json` file by replacing your Vue dependencies with
4747

4848
```text
4949
"dependencies": {
50-
"vue": "npm:@els-js/vue@>=2.7.16-tuxcare.1"
50+
"vue": "npm:@els-vue/vue@>=2.7.16-tuxcare.1"
5151
},
5252
"overrides": {
53-
"vue@2.7.16": "npm:@els-js/vue@>=2.7.16-tuxcare.1"
53+
"vue@2.7.16": "npm:@els-vue/vue@>=2.7.16-tuxcare.1"
5454
}
5555
```
5656

0 commit comments

Comments
 (0)