mirror of
https://github.com/denoland/deno.git
synced 2024-11-24 15:19:26 -05:00
147411e64b
Adds much better support for the unstable Deno workspaces as well as support for npm workspaces. npm workspaces is still lacking in that we only install packages into the root node_modules folder. We'll make it smarter over time in order for it to figure out when to add node_modules folders within packages. This includes a breaking change in config file resolution where we stop searching for config files on the first found package.json unless it's in a workspace. For the previous behaviour, the root deno.json needs to be updated to be a workspace by adding `"workspace": ["./path-to-pkg-json-folder-goes-here"]`. See details in https://github.com/denoland/deno_config/pull/66 Closes #24340 Closes #24159 Closes #24161 Closes #22020 Closes #18546 Closes #16106 Closes #24160
43 lines
1.2 KiB
Text
43 lines
1.2 KiB
Text
{
|
|
"tempDir": true,
|
|
"tests": {
|
|
"no_config": {
|
|
// --no-config
|
|
"args": "run -L debug -A --no-config noconfig.ts",
|
|
"output": "noconfig.out",
|
|
"cwd": "code"
|
|
},
|
|
"no_npm": {
|
|
// --no-npm
|
|
"args": "run -L debug -A --no-npm noconfig.ts",
|
|
"output": "noconfig.out",
|
|
"cwd": "code"
|
|
},
|
|
"no_pkg_json_env_var": {
|
|
// not auto-discovered with env var
|
|
"args": "run -L debug -A noconfig.ts",
|
|
"output": "no_package_json.out",
|
|
"cwd": "code",
|
|
"envs": {
|
|
"DENO_NO_PACKAGE_JSON": "1"
|
|
}
|
|
},
|
|
"no_pkg_json_imports": {
|
|
// this should not use --quiet because we should ensure no package.json install occurs
|
|
"args": "run -A no_package_json_imports.ts",
|
|
"output": "no_package_json_imports.out",
|
|
"cwd": "code"
|
|
},
|
|
"auto_discovered": {
|
|
// auto-discovered node_modules relative package.json
|
|
"args": "run -A main.js",
|
|
"output": "code/sub_dir/main.out",
|
|
"cwd": "code/sub_dir"
|
|
},
|
|
"auto_discovered_arg": {
|
|
// auto-discovered for local script arg
|
|
"args": "run -L debug -A code/main.ts", // notice this is not in the sub dir
|
|
"output": "main.out"
|
|
}
|
|
}
|
|
}
|