Skip to content

Commit 5e0909b

Browse files
authored
chore: fix spelling in workspaces (#8620)
1 parent f367507 commit 5e0909b

9 files changed

Lines changed: 19 additions & 19 deletions

File tree

workspaces/libnpmorg/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@
197197
## 2.0.0 (2020-03-02)
198198

199199
### BREAKING CHANGE
200-
- Removed `figgy-pudding` as a dependecy
200+
- Removed `figgy-pudding` as a dependency
201201
- Using native promises
202202
- Require node >= v10
203203

workspaces/libnpmpublish/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,7 @@
414414

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

417-
### Miscellaneuous
417+
### Miscellaneous
418418

419419
* [`5cea10f`](https://github.com/npm/libnpmpublish/commit/5cea10f) chore: basic project updates ([@claudiahdz](https://github.com/claudiahdz))
420420
* [`3010b93`](https://github.com/npm/libnpmpublish/commit/3010b93) chore: cleanup badges + contributing ([@ruyadorno](https://github.com/ruyadorno))

workspaces/libnpmpublish/test/publish.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ t.test('publish existing package with provenance in gha', async t => {
406406
}
407407
const idToken = `.${Buffer.from(JSON.stringify(oidcClaims)).toString('base64')}.`
408408

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

961-
// Data for mocking Fulcio certifcate request
961+
// Data for mocking Fulcio certificate request
962962
const fulcioURL = 'https://mock.fulcio'
963963
const leafCertificate = `-----BEGIN CERTIFICATE-----\nabc\n-----END CERTIFICATE-----\n`
964964
const rootCertificate = `-----BEGIN CERTIFICATE-----\nxyz\n-----END CERTIFICATE-----\n`

workspaces/libnpmsearch/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@
173173

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

176-
### Miscellaneuous
176+
### Miscellaneous
177177

178178
* [`b413aae`](https://github.com/npm/libnpmsearch/commit/b413aae) chore: basic project updates ([@claudiahdz](https://github.com/claudiahdz))
179179
* [`534983c`](https://github.com/npm/libnpmsearch/commit/534983c) chore: remove pr temmsearch ([@ruyadorno](https://github.com/ruyadorno))

workspaces/libnpmsearch/test/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ test('accepts a from option', async t => {
157157
t.equal(results.length, 4, 'returns more results if endpoint does so')
158158
})
159159

160-
test('accepts quality/mainenance/popularity options', async t => {
160+
test('accepts quality/maintenance/popularity options', async t => {
161161
const query = qs.stringify({
162162
text: 'oo',
163163
size: 20,

workspaces/libnpmteam/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@
181181
## [2.0.0](https://github.com/npm/libnpmteam/compare/v1.0.2...v2.0.0) (2020-03-02)
182182

183183
### BREAKING CHANGE
184-
- Removed `figgy-pudding` as a dependecy
184+
- Removed `figgy-pudding` as a dependency
185185
- Using native promises
186186
- Require node >= v10
187187

workspaces/libnpmteam/test/index.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ test('create', async t => {
2020

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

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

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

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

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

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

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

204204
test('lsUsers.stream - no options', async t => {
205205
// NOTE: mocking real url, because no opts variable means `registry` value
206-
// will be defauled to real registry url in `npm-registry-fetch`
206+
// will be defaulted to real registry url in `npm-registry-fetch`
207207
tnock(t, 'https://registry.npmjs.org')
208208
.get('/-/team/foo/cli/user?format=cli')
209209
.reply(200, ['iarna', 'zkat'])

workspaces/libnpmversion/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

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

1616
## [8.0.0](https://github.com/npm/cli/compare/libnpmversion-v8.0.0-pre.0...libnpmversion-v8.0.0) (2024-12-16)
1717
### Features

workspaces/libnpmversion/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ const npmVersion = require('libnpmversion')
1515
// - any semver version string (set to that exact version)
1616
// - 'major', 'minor', 'patch', 'pre{major,minor,patch}' (increment at
1717
// that value)
18-
// - 'from-git' (set to the latest semver-lookin git tag - this skips
19-
// gitTagVersion, but will still sign if asked)
18+
// - 'from-git' (set to the latest tag in git that looks like semver -
19+
// this skips gitTagVersion, but will still sign if asked)
2020
npmVersion(arg, {
2121
path: '/path/to/my/pkg', // defaults to cwd
2222

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

115115
#### `path` String
116116

117-
The path to the package being versionified. Defaults to process.cwd().
117+
The path to the package being versioned. Defaults to process.cwd().
118118

119119
#### `allowSameVersion` Boolean
120120

0 commit comments

Comments
 (0)