From 3d145af8527211c3efd69bad660e16103fffecb3 Mon Sep 17 00:00:00 2001 From: Jordan Cech <18233718+jayczech23@users.noreply.github.com> Date: Fri, 4 Feb 2022 15:11:04 -0700 Subject: [PATCH] Update interacting-with-other-packages-via-services.md While reading docs, found a broken link for `version ranges`. Propose using the replacing link (https://github.com/npm/node-semver#ranges) Or the following link to keep referencing npmjs docs: https://docs.npmjs.com/cli/v7/configuring-npm/package-json#dependencies (note: the above link contains as link to (https://github.com/npm/node-semver#ranges) --- .../sections/interacting-with-other-packages-via-services.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/behind-atom/sections/interacting-with-other-packages-via-services.md b/content/behind-atom/sections/interacting-with-other-packages-via-services.md index 388e638cea..5419d743c3 100644 --- a/content/behind-atom/sections/interacting-with-other-packages-via-services.md +++ b/content/behind-atom/sections/interacting-with-other-packages-via-services.md @@ -37,7 +37,7 @@ module.exports = { } ``` -Similarly, to consume a service, specify one or more [version _ranges_](https://docs.npmjs.com/cli/v7/using-npm/semver#ranges), each paired with the name of a method on the package's main module: +Similarly, to consume a service, specify one or more [version _ranges_](https://github.com/npm/node-semver#ranges), each paired with the name of a method on the package's main module: ```json {