Skip to content

Commit b3636a2

Browse files
committed
chore: rename to workrkit
1 parent 7d067cd commit b3636a2

File tree

9 files changed

+20
-20
lines changed

9 files changed

+20
-20
lines changed

.changeset/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"changelog": [
44
"@changesets/changelog-github",
55
{
6-
"repo": "un-ts/workerkit"
6+
"repo": "un-ts/workrkit"
77
}
88
],
99
"commit": false,

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ jobs:
3636
with:
3737
publish: yarn release
3838
version: yarn run version
39-
commit: 'chore: release workerkit'
40-
title: 'chore: release workerkit'
39+
commit: 'chore: release workrkit'
40+
title: 'chore: release workrkit'
4141
env:
4242
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4343
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44

55
### Patch Changes
66

7-
- [#3](https://github.com/un-ts/workerkit/pull/3) [`6f41d64`](https://github.com/un-ts/workerkit/commit/6f41d64a3a8fef342b161c88f2810d24f90a497b) Thanks [@JounQin](https://github.com/JounQin)! - feat: first blood, rename to workerkit
7+
- [#3](https://github.com/un-ts/workrkit/pull/3) [`6f41d64`](https://github.com/un-ts/workrkit/commit/6f41d64a3a8fef342b161c88f2810d24f90a497b) Thanks [@JounQin](https://github.com/JounQin)! - feat: first blood, rename to workrkit

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# workerkit
1+
# workrkit
22

3-
[![GitHub Actions](https://github.com/un-ts/workerkit/workflows/CI/badge.svg)](https://github.com/un-ts/workerkit/actions/workflows/ci.yml)
4-
[![Codecov](https://img.shields.io/codecov/c/github/un-ts/workerkit.svg)](https://codecov.io/gh/un-ts/workerkit)
3+
[![GitHub Actions](https://github.com/un-ts/workrkit/workflows/CI/badge.svg)](https://github.com/un-ts/workrkit/actions/workflows/ci.yml)
4+
[![Codecov](https://img.shields.io/codecov/c/github/un-ts/workrkit.svg)](https://codecov.io/gh/un-ts/workrkit)
55
[![type-coverage](https://img.shields.io/badge/dynamic/json.svg?label=type-coverage&prefix=%E2%89%A5&suffix=%&query=$.typeCoverage.atLeast&uri=https%3A%2F%2Fraw.githubusercontent.com%2Fun-ts%2Flib-boilerplate%2Fmain%2Fpackage.json)](https://github.com/plantain-00/type-coverage)
6-
[![npm](https://img.shields.io/npm/v/workerkit.svg)](https://www.npmjs.com/package/workerkit)
7-
[![GitHub Release](https://img.shields.io/github/release/un-ts/workerkit)](https://github.com/un-ts/workerkit/releases)
6+
[![npm](https://img.shields.io/npm/v/workrkit.svg)](https://www.npmjs.com/package/workrkit)
7+
[![GitHub Release](https://img.shields.io/github/release/un-ts/workrkit)](https://github.com/un-ts/workrkit/releases)
88

99
[![Conventional Commits](https://img.shields.io/badge/conventional%20commits-1.0.0-yellow.svg)](https://conventionalcommits.org)
1010
[![Renovate enabled](https://img.shields.io/badge/renovate-enabled-brightgreen.svg)](https://renovatebot.com)
@@ -30,19 +30,19 @@ A simple library boilerplate.
3030

3131
```sh
3232
# pnpm
33-
pnpm add workerkit
33+
pnpm add workrkit
3434

3535
# yarn
36-
yarn add workerkit
36+
yarn add workrkit
3737

3838
# npm
39-
npm i workerkit
39+
npm i workrkit
4040
```
4141

4242
### API
4343

4444
```js
45-
import echo from 'workerkit'
45+
import echo from 'workrkit'
4646

4747
echo()
4848
```

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"name": "workerkit",
2+
"name": "workrkit",
33
"version": "0.0.1",
44
"type": "module",
55
"description": "A simple library boilerplate.",
6-
"repository": "git+https://github.com/un-ts/workerkit.git",
6+
"repository": "git+https://github.com/un-ts/workrkit.git",
77
"author": "JounQin (https://www.1stG.me) <[email protected]>",
88
"funding": "https://opencollective.com/unts",
99
"license": "MIT",

test/basic.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import echo from 'workerkit'
1+
import echo from 'workrkit'
22

33
test('it should just work', () => {
44
expect(echo()).toBe('Hello World!')

vercel.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"version": 2,
33
"alias": [
4-
"workerkit.vercel.app"
4+
"workrkit.vercel.app"
55
],
66
"github": {
77
"silent": true

vitest.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export default defineConfig({
99
],
1010
resolve: {
1111
alias: {
12-
workerkit: new URL('src/index.ts', import.meta.url).pathname,
12+
workrkit: new URL('src/index.ts', import.meta.url).pathname,
1313
},
1414
},
1515
test: {

yarn.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21166,9 +21166,9 @@ __metadata:
2116621166
languageName: node
2116721167
linkType: hard
2116821168

21169-
"workerkit@workspace:.":
21169+
"workrkit@workspace:.":
2117021170
version: 0.0.0-use.local
21171-
resolution: "workerkit@workspace:."
21171+
resolution: "workrkit@workspace:."
2117221172
dependencies:
2117321173
"@1stg/app-config": "npm:^10.0.1"
2117421174
"@changesets/changelog-github": "npm:^0.5.0"

0 commit comments

Comments
 (0)