Skip to content

Commit 9c3ecfb

Browse files
Downgrade uuid to v8.3.2 and simplify npm config
Changed uuid dependency from v9.0.0 to v8.3.2 to match the version used by azure-pipelines-task-lib dependencies. Removed --loglevel=http flag from npm ci commands in CI workflows to use default logging.
1 parent c8511eb commit 9c3ecfb

4 files changed

Lines changed: 24 additions & 18 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
with:
2525
node-version: 22.11.0
2626
registry-url: https://npm.echohq.com/
27-
- run: npm ci --ignore-scripts --loglevel=http
27+
- run: npm ci --ignore-scripts
2828
env:
2929
ECHO_LIBRARIES_ACCESS_KEY: ${{ secrets.ECHO_LIBRARIES_ACCESS_KEY }}
3030
- name: Run Unit Tests
@@ -49,7 +49,7 @@ jobs:
4949
with:
5050
node-version: 22.11.0
5151
registry-url: https://npm.echohq.com/
52-
- run: npm ci --ignore-scripts --loglevel=http
52+
- run: npm ci --ignore-scripts
5353
env:
5454
ECHO_LIBRARIES_ACCESS_KEY: ${{ secrets.ECHO_LIBRARIES_ACCESS_KEY }}
5555
- name: Code Linting

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ jobs:
149149
env:
150150
ECHO_LIBRARIES_ACCESS_KEY: ${{ secrets.ECHO_LIBRARIES_ACCESS_KEY }}
151151
run: |
152-
npm ci --ignore-scripts --loglevel=http
152+
npm ci --ignore-scripts
153153
npm run build
154154
155155
- name: Create Pull Request

package-lock.json

Lines changed: 20 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
"underscore": "^1.13.8",
6565
"picomatch": "^2.3.2",
6666
"brace-expansion": "^2.1.2",
67-
"uuid": "^9.0.0"
67+
"uuid": "^8.3.2"
6868
},
6969
"publishConfig": {
7070
"registry": "https://npm.pkg.github.com"

0 commit comments

Comments
 (0)