From 9835b095e56bdfc2b195b2c4741631b78a759115 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Tue, 25 Oct 2022 18:20:07 +0200 Subject: fix(npm): add support for npm packages in lock files (#15938) This commit adds support for npm packages in the lock file. --- cli/tests/testdata/npm/lock_file/main.js | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 cli/tests/testdata/npm/lock_file/main.js (limited to 'cli/tests/testdata/npm/lock_file/main.js') diff --git a/cli/tests/testdata/npm/lock_file/main.js b/cli/tests/testdata/npm/lock_file/main.js new file mode 100644 index 000000000..a7b5960ca --- /dev/null +++ b/cli/tests/testdata/npm/lock_file/main.js @@ -0,0 +1,5 @@ +import fsx from "npm:fs-extra@10.1.0"; +import { createApp } from "npm:vue"; + +console.log(fsx.access); +console.log(createApp); -- cgit v1.2.3