Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions cli/npm/managed/resolvers/local.rs
Original file line number Diff line number Diff line change
Expand Up @@ -515,6 +515,15 @@ async fn sync_resolution_with_fs(
.add(package.clone(), package_path);
}

if let Some(deprecated) = &package.deprecated {
log::info!(
"{} {:?} is deprecated: {}",
crate::colors::yellow("Warning"),
package.id,
crate::colors::gray(deprecated),
);
}

// finally stop showing the progress bar
drop(pb_guard); // explicit for clarity
Ok::<_, AnyError>(())
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export declare function setValue(val: number): void;
export declare function getValue(): number;
export declare const url: string;
11 changes: 11 additions & 0 deletions tests/registry/npm/@denotest/deprecated-package/1.0.0/main.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
let value = 0;

export function setValue(newValue) {
value = newValue;
}

export function getValue() {
return value;
}

export const url = import.meta.url;
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"name": "@denotest/deprecated-package",
"version": "1.0.0",
"type": "module",
"main": "main.mjs",
"types": "main.d.mts",
"deprecated": "Deprecated version"
}

25 changes: 25 additions & 0 deletions tests/specs/install/install_deprecated_package/__test__.jsonc
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"tempDir": true,
"envs": {
"DENO_FUTURE": "1"
},
"steps": [
{
"args": "install npm:@denotest/deprecated-package",
"output": "install.out"
},
{
// make sure the dep got cached
"args": "run --cached-only main.js",
"exitCode": 0,
"output": ""
},
{
"args": [
"eval",
"console.log(Deno.readTextFileSync('package.json').trim())"
],
"output": "package.json.out"
}
]
}
5 changes: 5 additions & 0 deletions tests/specs/install/install_deprecated_package/install.out
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Add npm:@denotest/[email protected]
Download http://localhost:4260/@denotest/deprecated-package
Download http://localhost:4260/@denotest/deprecated-package/1.0.0.tgz
Initialize @denotest/[email protected]
Warning @denotest/[email protected] is deprecated: Deprecated version
2 changes: 2 additions & 0 deletions tests/specs/install/install_deprecated_package/main.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import { setValue } from "@denotest/deprecated-package";
setValue(5);
3 changes: 3 additions & 0 deletions tests/specs/install/install_deprecated_package/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"dependencies": {}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"dependencies": { "@denotest/deprecated-package": "^1.0.0" }
}