mirror of
https://github.com/denoland/deno.git
synced 2024-11-25 15:29:32 -05:00
4e23a5b1fc
This PR implements the changes we plan to make to `deno install` in deno 2.0. - `deno install` without arguments caches dependencies from `package.json` / `deno.json` and sets up the `node_modules` folder - `deno install <pkg>` adds the package to the config file (either `package.json` or `deno.json`), i.e. it aliases `deno add` - `deno add` can also add deps to `package.json` (this is gated behind `DENO_FUTURE` due to uncertainty around handling projects with both `deno.json` and `package.json`) - `deno install -g <bin>` installs a package as a globally available binary (the same as `deno install <bin>` in 1.0) --------- Co-authored-by: Nathan Whitaker <nathan@deno.com>
16 lines
267 B
Text
16 lines
267 B
Text
{
|
|
"tempDir": true,
|
|
"envs": {
|
|
"DENO_FUTURE": "1"
|
|
},
|
|
"steps": [
|
|
{
|
|
"args": "install --global --root ./bins --name deno-test-bin ./main.js",
|
|
"output": "install.out"
|
|
},
|
|
{
|
|
"args": "run -A assert.js",
|
|
"output": ""
|
|
}
|
|
]
|
|
}
|