From ed2c0fa4caf0009e82ce425543cd0c62b014a474 Mon Sep 17 00:00:00 2001 From: Jesse Rosenberger Date: Tue, 26 Feb 2019 12:50:37 +0200 Subject: [PATCH] Always publish `apollo-server-core` when running `npm run release`. This will hopefully keep the version numbers more aligned, though we should still consider getting rid of `--exact` when the time is right. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 80b23616..fcd8bd2f 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "compile": "tsc --build tsconfig.build.json", "compile:clean": "tsc --build tsconfig.build.json --clean", "watch": "tsc --build tsconfig.build.json --watch", - "release": "npm run clean && npm ci && lerna publish --exact", + "release": "npm run clean && npm ci && lerna publish --exact --force-publish=apollo-server-core", "postinstall": "lerna run prepare && npm run compile", "lint": "prettier-check '**/*.{js,ts}'", "lint-fix": "prettier '**/*.{js,ts}' --write",