diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2022-08-23 10:39:19 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-23 10:39:19 -0400 |
commit | e7367044d933ee3518ae583a43876a0ddab5b17e (patch) | |
tree | e557e3ea4faad632bcfafa6539f3bd0115dc6426 /cli/tests/testdata/npm/cjs_with_deps/main.js | |
parent | 362af63c6f45e98948536d08d2d6195af87f729c (diff) |
feat: binary npm commands (#15542)
Diffstat (limited to 'cli/tests/testdata/npm/cjs_with_deps/main.js')
-rw-r--r-- | cli/tests/testdata/npm/cjs_with_deps/main.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tests/testdata/npm/cjs_with_deps/main.js b/cli/tests/testdata/npm/cjs_with_deps/main.js index 420136c92..568726874 100644 --- a/cli/tests/testdata/npm/cjs_with_deps/main.js +++ b/cli/tests/testdata/npm/cjs_with_deps/main.js @@ -1,5 +1,5 @@ import chalk from "npm:chalk@4"; -import { expect } from "npm:chai@4.2"; +import { expect } from "npm:chai@4.3"; console.log(chalk.green("chalk cjs loads")); |