Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release/v7.0.2 #1977

Merged
merged 13 commits into from
Oct 16, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -720,3 +720,5 @@ Lucio Martinez <lucio.martinez@sixt.com>
Brian Jenkins <brian@npmjs.com>
nlf <quitlahok@gmail.com>
zhaoxuxu <zhaoxuxujc@gmail.com>
liuye.adam <liuye.adam@bytedance.com>
Michaël Zasso <targos@protonmail.com>
35 changes: 35 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,38 @@
## 7.0.2 (2020-10-16)

### DOCUMENTATION

* [`9476734b7`](https://github.com/npm/cli/commit/9476734b7d5fa6df80ad17ad277a6bee9a16235c)
[#1967](https://github.com/npm/cli/pull/1967)
add mention to workspaces prepare lifecycle
([@ruyadorno](https://github.com/ruyadorno))

### BUG FIXES

* [`5cf71c689`](https://github.com/npm/cli/commit/5cf71c689bcfcd423405e59d05b7cc5704cb4c02)
[#1971](https://github.com/npm/cli/pull/1971)
owner rm at local pkg not work
([@ShangguanQuail](https://github.com/ShangguanQuail))

### DEPENDENCIES

* [`722b7ae63`](https://github.com/npm/cli/commit/722b7ae63da8b386fe188066dc2dae0121d9353b)
[#1974](https://github.com/npm/cli/pull/1974)
patch node-gyp
([@targos](https://github.com/MylesBorins))
* [`4ae825c01`](https://github.com/npm/cli/commit/4ae825c01c7ca3031361f9df72594a190c6ed1e4)
[#1976](https://github.com/npm/cli/pull/1976)
patch node-gyp
([@MylesBorins](https://github.com/MylesBorins))
* [`181eabf13`](https://github.com/npm/cli/commit/181eabf132c823af086380368de73d2f42e5aac1)
`@npmcli/arborist@1.0.3`
* fix workspaces `prepare` lifecycle scripts
* fix peer deps overchecks resulting in ERESOLVE
* [`6cc115409`](https://github.com/npm/cli/commit/6cc115409b7eb2df8e11db6232ee3d00e4316a7d)
`init-package-json@2.0.1`
* [`dbf9d6d1f`](https://github.com/npm/cli/commit/dbf9d6d1f060ea43b700409306574396a798127d)
`libnpmpublish@3.0.2`

## 7.0.1 (2020-10-15)

### DOCUMENTATION
Expand Down
2 changes: 1 addition & 1 deletion docs/content/using-npm/scripts.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ The advantage of doing these things at `prepublish` time is that they can be don
Also triggers

* `prepublish` (when on local)
* `prepare` (when on local)
* `prepare` (when on local or workspaces)

#### [`npm start`](/cli-commands/start)

Expand Down
16 changes: 16 additions & 0 deletions gyp/.github/workflows/release-please.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
on:
push:
branches:
- master

name: release-please
jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: GoogleCloudPlatform/release-please-action@v2.5.6
with:
token: ${{ secrets.GITHUB_TOKEN }}
release-type: python
package-name: gyp-next
bump-minor-pre-major: Yes
2 changes: 1 addition & 1 deletion lib/owner.js
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ function rm (user, pkg, opts) {
if (!pkg) {
return readLocalPkg().then(pkg => {
if (!pkg) { UsageError() }
return add(user, pkg, opts)
return rm(user, pkg, opts)
})
}
log.verbose('owner rm', '%s from %s', user, pkg)
Expand Down
1 change: 0 additions & 1 deletion node_modules/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 17 additions & 11 deletions node_modules/@npmcli/arborist/lib/arborist/build-ideal-tree.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

68 changes: 54 additions & 14 deletions node_modules/@npmcli/arborist/lib/arborist/rebuild.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion node_modules/@npmcli/arborist/package.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

38 changes: 29 additions & 9 deletions node_modules/ajv/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions node_modules/ajv/dist/ajv.bundle.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions node_modules/ajv/dist/ajv.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion node_modules/ajv/dist/ajv.min.js.map

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions node_modules/ajv/lib/ajv.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading