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: 1 addition & 1 deletion workspaces/libnpmorg/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@
## 2.0.0 (2020-03-02)

### BREAKING CHANGE
- Removed `figgy-pudding` as a dependecy
- Removed `figgy-pudding` as a dependency
- Using native promises
- Require node >= v10

Expand Down
2 changes: 1 addition & 1 deletion workspaces/libnpmpublish/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@

* [`f6bf2b8`](https://github.com/npm/libnpmpublish/commit/f6bf2b8) feat: unpublish code refactor ([@claudiahdz](https://github.com/claudiahdz))

### Miscellaneuous
### Miscellaneous

* [`5cea10f`](https://github.com/npm/libnpmpublish/commit/5cea10f) chore: basic project updates ([@claudiahdz](https://github.com/claudiahdz))
* [`3010b93`](https://github.com/npm/libnpmpublish/commit/3010b93) chore: cleanup badges + contributing ([@ruyadorno](https://github.com/ruyadorno))
Expand Down
4 changes: 2 additions & 2 deletions workspaces/libnpmpublish/test/publish.js
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ t.test('publish existing package with provenance in gha', async t => {
}
const idToken = `.${Buffer.from(JSON.stringify(oidcClaims)).toString('base64')}.`

// Data for mocking Fulcio certifcate request
// Data for mocking Fulcio certificate request
const fulcioURL = 'https://mock.fulcio'
const leafCertificate = `-----BEGIN CERTIFICATE-----\nabc\n-----END CERTIFICATE-----\n`
const rootCertificate = `-----BEGIN CERTIFICATE-----\nxyz\n-----END CERTIFICATE-----\n`
Expand Down Expand Up @@ -958,7 +958,7 @@ t.test('publish existing package with provenance in gitlab', async t => {
}
const spec = npa(manifest.name)

// Data for mocking Fulcio certifcate request
// Data for mocking Fulcio certificate request
const fulcioURL = 'https://mock.fulcio'
const leafCertificate = `-----BEGIN CERTIFICATE-----\nabc\n-----END CERTIFICATE-----\n`
const rootCertificate = `-----BEGIN CERTIFICATE-----\nxyz\n-----END CERTIFICATE-----\n`
Expand Down
2 changes: 1 addition & 1 deletion workspaces/libnpmsearch/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@

* [`45f4db1`](https://github.com/npm/libnpmsearch/commit/45f4db1) fix: remove figgy-pudding ([@claudiahdz](https://github.com/claudiahdz))

### Miscellaneuous
### Miscellaneous

* [`b413aae`](https://github.com/npm/libnpmsearch/commit/b413aae) chore: basic project updates ([@claudiahdz](https://github.com/claudiahdz))
* [`534983c`](https://github.com/npm/libnpmsearch/commit/534983c) chore: remove pr temmsearch ([@ruyadorno](https://github.com/ruyadorno))
Expand Down
2 changes: 1 addition & 1 deletion workspaces/libnpmsearch/test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ test('accepts a from option', async t => {
t.equal(results.length, 4, 'returns more results if endpoint does so')
})

test('accepts quality/mainenance/popularity options', async t => {
test('accepts quality/maintenance/popularity options', async t => {
const query = qs.stringify({
text: 'oo',
size: 20,
Expand Down
2 changes: 1 addition & 1 deletion workspaces/libnpmteam/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@
## [2.0.0](https://github.com/npm/libnpmteam/compare/v1.0.2...v2.0.0) (2020-03-02)

### BREAKING CHANGE
- Removed `figgy-pudding` as a dependecy
- Removed `figgy-pudding` as a dependency
- Using native promises
- Require node >= v10

Expand Down
16 changes: 8 additions & 8 deletions workspaces/libnpmteam/test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ test('create', async t => {

test('create - no options', async t => {
// NOTE: mocking real url, because no opts variable means `registry` value
// will be defauled to real registry url in `npm-registry-fetch`
// will be defaulted to real registry url in `npm-registry-fetch`
tnock(t, 'https://registry.npmjs.org')
.put('/-/org/foo/team', { name: 'cli' })
.reply(201, { name: 'cli' })
Expand Down Expand Up @@ -61,7 +61,7 @@ test('destroy', async t => {

test('destroy - no options', async t => {
// NOTE: mocking real url, because no opts variable means `registry` value
// will be defauled to real registry url in `npm-registry-fetch`
// will be defaulted to real registry url in `npm-registry-fetch`
tnock(t, 'https://registry.npmjs.org')
.delete('/-/team/foo/cli')
.reply(204)
Expand All @@ -82,7 +82,7 @@ test('add', async t => {

test('add - no options', async t => {
// NOTE: mocking real url, because no opts variable means `registry` value
// will be defauled to real registry url in `npm-registry-fetch`
// will be defaulted to real registry url in `npm-registry-fetch`
tnock(t, 'https://registry.npmjs.org')
.put('/-/team/foo/cli/user', { user: 'zkat' })
.reply(201, {})
Expand All @@ -103,7 +103,7 @@ test('rm', async t => {

test('rm - no options', async t => {
// NOTE: mocking real url, because no opts variable means `registry` value
// will be defauled to real registry url in `npm-registry-fetch`
// will be defaulted to real registry url in `npm-registry-fetch`
tnock(t, 'https://registry.npmjs.org')
.delete('/-/team/foo/cli/user', { user: 'zkat' })
.reply(204)
Expand All @@ -124,7 +124,7 @@ test('lsTeams', async t => {

test('lsTeams - no options', async t => {
// NOTE: mocking real url, because no opts variable means `registry` value
// will be defauled to real registry url in `npm-registry-fetch`
// will be defaulted to real registry url in `npm-registry-fetch`
tnock(t, 'https://registry.npmjs.org')
.get('/-/org/foo/team?format=cli')
.reply(200, ['foo:bar', 'foo:cli'])
Expand Down Expand Up @@ -153,7 +153,7 @@ test('lsTeams.stream', async t => {

test('lsTeams.stream - no options', async t => {
// NOTE: mocking real url, because no opts variable means `registry` value
// will be defauled to real registry url in `npm-registry-fetch`
// will be defaulted to real registry url in `npm-registry-fetch`
tnock(t, 'https://registry.npmjs.org')
.get('/-/org/foo/team?format=cli')
.reply(200, ['foo:bar', 'foo:cli'])
Expand All @@ -174,7 +174,7 @@ test('lsUsers', async t => {

test('lsUsers - no options', async t => {
// NOTE: mocking real url, because no opts variable means `registry` value
// will be defauled to real registry url in `npm-registry-fetch`
// will be defaulted to real registry url in `npm-registry-fetch`
tnock(t, 'https://registry.npmjs.org')
.get('/-/team/foo/cli/user?format=cli')
.reply(500)
Expand Down Expand Up @@ -203,7 +203,7 @@ test('lsUsers.stream', async t => {

test('lsUsers.stream - no options', async t => {
// NOTE: mocking real url, because no opts variable means `registry` value
// will be defauled to real registry url in `npm-registry-fetch`
// will be defaulted to real registry url in `npm-registry-fetch`
tnock(t, 'https://registry.npmjs.org')
.get('/-/team/foo/cli/user?format=cli')
.reply(200, ['iarna', 'zkat'])
Expand Down
2 changes: 1 addition & 1 deletion workspaces/libnpmversion/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

## [8.0.1](https://github.com/npm/cli/compare/libnpmversion-v8.0.0...libnpmversion-v8.0.1) (2025-05-15)
### Bug Fixes
* [`71bb817`](https://github.com/npm/cli/commit/71bb817599bbaabe8e05a2bc7dd32ec16622bd93) [#8279](https://github.com/npm/cli/pull/8279) version: include prerelease when retriving tag (#8279) (@milaninfy)
* [`71bb817`](https://github.com/npm/cli/commit/71bb817599bbaabe8e05a2bc7dd32ec16622bd93) [#8279](https://github.com/npm/cli/pull/8279) version: include prerelease when retrieving tag (#8279) (@milaninfy)

## [8.0.0](https://github.com/npm/cli/compare/libnpmversion-v8.0.0-pre.0...libnpmversion-v8.0.0) (2024-12-16)
### Features
Expand Down
6 changes: 3 additions & 3 deletions workspaces/libnpmversion/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ const npmVersion = require('libnpmversion')
// - any semver version string (set to that exact version)
// - 'major', 'minor', 'patch', 'pre{major,minor,patch}' (increment at
// that value)
// - 'from-git' (set to the latest semver-lookin git tag - this skips
// gitTagVersion, but will still sign if asked)
// - 'from-git' (set to the latest tag in git that looks like semver -
// this skips gitTagVersion, but will still sign if asked)
npmVersion(arg, {
path: '/path/to/my/pkg', // defaults to cwd

Expand Down Expand Up @@ -114,7 +114,7 @@ all is well, or rejects if any errors are encountered.

#### `path` String

The path to the package being versionified. Defaults to process.cwd().
The path to the package being versioned. Defaults to process.cwd().

#### `allowSameVersion` Boolean

Expand Down
Loading