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.
This commit is contained in:
Jesse Rosenberger 2019-02-26 12:50:37 +02:00
parent a6fca66da2
commit ed2c0fa4ca
No known key found for this signature in database
GPG key ID: C0CCCF81AA6C08D8

View file

@ -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",