-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: do not attempt to publish e2e-tests package (#1659)
The publishing step would currently fail on the `e2e-tests` package because it defined a broken `prepublish` script. We should not be trying to publish the package at all; mark it `private`.
- Loading branch information
Showing
5 changed files
with
6 additions
and
3 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
{ | ||
"name": "@mongosh/e2e-tests", | ||
"version": "0.0.0-dev.0", | ||
"private": true, | ||
"description": "MongoDB Shell E2E Tests Package", | ||
"homepage": "https://github.com/mongodb-js/mongosh", | ||
"author": "Compass Team <[email protected]>", | ||
|
@@ -16,7 +17,6 @@ | |
"lint": "npm run eslint . && npm run prettier -- --check .", | ||
"check": "npm run lint && npm run depcheck", | ||
"depcheck": "depcheck", | ||
"prepublish": "npm run compile", | ||
"prettier": "prettier", | ||
"reformat": "npm run prettier -- --write . && npm run eslint --fix" | ||
}, | ||
|