From f14d0bab2e523bbfbb5739691144f8d5e34e6632 Mon Sep 17 00:00:00 2001 From: Wentao Kuang Date: Fri, 3 May 2024 13:04:36 +1200 Subject: [PATCH] fix(smoke): Smoke test is missing ulid dependency to running inside the container. (#3255) #### Motivation Smoke test should be able to running in the cli container, but it is missing the ulid depenency. #### Modification Install ulid for smoke #### Checklist _If not applicable, provide explanation of why._ - [ ] Tests updated - [ ] Docs updated - [ ] Issue linked in Title --- package-lock.json | 4 +++- packages/smoke/package.json | 5 ++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/package-lock.json b/package-lock.json index 7ed1745bb..7f7c470a7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -19037,7 +19037,6 @@ "version": "2.3.0", "resolved": "https://registry.npmjs.org/ulid/-/ulid-2.3.0.tgz", "integrity": "sha512-keqHubrlpvT6G2wH0OEfSW4mquYRcbe/J8NMmveoQOjUqmo+hXtO+ORCpWhdbZ7k72UtY61BL7haGxW6enBnjw==", - "license": "MIT", "bin": { "ulid": "bin/cli.js" } @@ -20054,6 +20053,9 @@ "name": "@basemaps/smoke", "version": "7.3.0", "license": "MIT", + "dependencies": { + "ulid": "^2.3.0" + }, "engines": { "node": ">=18.0.0" } diff --git a/packages/smoke/package.json b/packages/smoke/package.json index 081932b8c..3603c847c 100644 --- a/packages/smoke/package.json +++ b/packages/smoke/package.json @@ -23,5 +23,8 @@ "files": [ "build/", "bin/" - ] + ], + "dependencies": { + "ulid": "^2.3.0" + } }