diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2022-10-25 18:20:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-25 18:20:07 +0200 |
commit | 9835b095e56bdfc2b195b2c4741631b78a759115 (patch) | |
tree | 1fa8ee44cdc374d48c2307c1bd35085af74ec85b /cli/tests/testdata/npm/lock_file/main.js | |
parent | 10c3c0ee5733cfa5cf4c2825c6a8fce9f05060aa (diff) |
fix(npm): add support for npm packages in lock files (#15938)
This commit adds support for npm packages in the lock file.
Diffstat (limited to 'cli/tests/testdata/npm/lock_file/main.js')
-rw-r--r-- | cli/tests/testdata/npm/lock_file/main.js | 5 |
1 files changed, 5 insertions, 0 deletions
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); |