From 6f010dabacef2bc7eea281df0964856099bfd92c Mon Sep 17 00:00:00 2001 From: James Brock Date: Sat, 20 Apr 2019 11:35:01 +0900 Subject: [PATCH] labextension npm dependency bounds loosen Relax upper version bounds on the jupyterlab alpha dependencies for ihaskell_labextension. It looks to me like these version bounds were intended to allow the entire major alpha 0.*.* version range, but the the prefix caret only includes minor versions if the major version is 0. Let's set the upper bound to 2.0.0, because according to SemVer, that is the next version number which we would expect to have breaking changes. --- ihaskell_labextension/package.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ihaskell_labextension/package.json b/ihaskell_labextension/package.json index bd2cf0fe..02d7a076 100644 --- a/ihaskell_labextension/package.json +++ b/ihaskell_labextension/package.json @@ -30,10 +30,10 @@ "watch": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "^0.17.1", - "@jupyterlab/apputils": "^0.17.2", - "@jupyterlab/docregistry": "^0.17.1", - "@jupyterlab/notebook": "^0.17.1", + "@jupyterlab/application": "0.17.1 - 2.0.0", + "@jupyterlab/apputils": "0.17.2 - 2.0.0", + "@jupyterlab/docregistry": "0.17.1 - 2.0.0", + "@jupyterlab/notebook": "0.17.1 - 2.0.0", "@jupyterlab/services": "^3.0.1", "@phosphor/disposable": "^1.1.2" },