Skip to content
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 <[email protected]>
Brian Jenkins <[email protected]>
nlf <[email protected]>
zhaoxuxu <[email protected]>
liuye.adam <[email protected]>
Michaël Zasso <[email protected]>
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/[email protected]`
* fix workspaces `prepare` lifecycle scripts
* fix peer deps overchecks resulting in ERESOLVE
* [`6cc115409`](https://github.com/npm/cli/commit/6cc115409b7eb2df8e11db6232ee3d00e4316a7d)
`[email protected]`
* [`dbf9d6d1f`](https://github.com/npm/cli/commit/dbf9d6d1f060ea43b700409306574396a798127d)
`[email protected]`

## 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/[email protected]
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