1
0
mirror of https://github.com/lensapp/lens.git synced 2024-09-11 09:25:26 +03:00

chore: Support and switch to using ^9.6.7 version of NPM

Signed-off-by: Gabriel <gaccettola@mirantis.com>
This commit is contained in:
Gabriel 2023-05-23 14:40:08 +02:00 committed by Sebastian Malton
parent 84f6a6a5ac
commit 6bf1544ddb
10 changed files with 1208 additions and 2718 deletions

View File

@ -23,7 +23,7 @@ jobs:
node-version: ${{ matrix.node-version }}
- name: Install specific npm version
run: npm install -g npm@^9.6.5
run: npm install -g npm@^9.6.7
- name: Generate Extensions API Reference using typedocs
run: |

View File

@ -28,7 +28,7 @@ jobs:
node-version: ${{ matrix.node-version }}
- name: Install specific npm version
run: npm install -g npm@^9.6.5
run: npm install -g npm@^9.6.7
- name: Get npm cache directory path
if: ${{ runner.os != 'Windows' }}

View File

@ -19,7 +19,7 @@ jobs:
registry-url: "https://npm.pkg.github.com"
- name: Install specific npm version
run: npm install -g npm@^9.6.5
run: npm install -g npm@^9.6.7
- name: Install deps
run: |

View File

@ -23,7 +23,7 @@ jobs:
node-version: ${{ matrix.node-version }}
- name: Install specific npm version
run: npm install -g npm@^9.6.5
run: npm install -g npm@^9.6.7
- name: Install deps
run: npm install

View File

@ -36,7 +36,7 @@ jobs:
node-version: ${{ matrix.node-version }}
- name: Install specific npm version
run: npm install -g npm@^9.6.5
run: npm install -g npm@^9.6.7
- name: Generate Extensions API Reference using typedocs
run: |

View File

@ -33,7 +33,7 @@ jobs:
node-version: ${{ matrix.node-version }}
- name: Install specific npm version
run: npm install -g npm@^9.6.5
run: npm install -g npm@^9.6.7
- name: Generate Extensions API Reference using typedocs
run: |
@ -79,7 +79,7 @@ jobs:
node-version: ${{ matrix.node-version }}
- name: Install specific npm version
run: npm install -g npm@^9.6.5
run: npm install -g npm@latest
- name: Generate Extensions API Reference using typedocs
run: |

View File

@ -31,7 +31,7 @@ jobs:
node-version: ${{ matrix.node-version }}
- name: Install specific npm version
run: npm install -g npm@^9.6.5
run: npm install -g npm@^9.6.7
- name: Generate NPM packages
run: |

View File

@ -35,7 +35,7 @@ jobs:
node-version: ${{ matrix.node-version }}
- name: Install specific npm version
run: npm install -g npm@^9.6.5
run: npm install -g npm@^9.6.7
- name: Get npm cache directory path
if: ${{ runner.os != 'Windows' }}
@ -105,7 +105,7 @@ jobs:
node-version: ${{ matrix.node-version }}
- name: Install specific npm version
run: npm install -g npm@^9.6.5
run: npm install -g npm@latest
- name: Get npm cache directory path
if: ${{ runner.os != 'Windows' }}

3902
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -9,7 +9,7 @@
"scripts": {
"all:reinstall": "npm run clean:node_modules && npm run all:install",
"all:install": "npx --yes --package npm@9.6.5 npm install",
"all:install": "npx --yes --package npm@^9.6.7 npm install",
"adr:create": "echo \"What is the title?\"; read title; adr new \"$title\"",
"adr:change-status": "echo \"Decision number?:\"; read decision; adr status $decision",
"adr:update-readme": "adr update",
@ -47,6 +47,6 @@
"rimraf": "^4.4.1"
},
"engines": {
"npm": "^9.6.5"
"npm": "9.6.7"
}
}