Skip to content

Commit 6f41d64

Browse files
authored
feat: first blood, rename to workerkit (#3)
1 parent 0bc3098 commit 6f41d64

File tree

13 files changed

+66
-73
lines changed

13 files changed

+66
-73
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/lib-boilerplate"
6+
"repo": "un-ts/workerkit"
77
}
88
],
99
"commit": false,

.changeset/smooth-cows-remain.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"workerkit": patch
3+
---
4+
5+
feat: first blood, rename to workerkit

.codesandbox/ci.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"node": "16",
2+
"node": "18",
33
"sandboxes": []
44
}

.github/FUNDING.yml

Lines changed: 0 additions & 11 deletions
This file was deleted.

.github/workflows/codeql.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@ jobs:
3030
uses: actions/checkout@v4
3131

3232
- name: Initialize CodeQL
33-
uses: github/codeql-action/init@v2
33+
uses: github/codeql-action/init@v3
3434
with:
3535
languages: ${{ matrix.language }}
3636
queries: +security-and-quality
3737

3838
- name: Autobuild
39-
uses: github/codeql-action/autobuild@v2
39+
uses: github/codeql-action/autobuild@v3
4040

4141
- name: Perform CodeQL Analysis
42-
uses: github/codeql-action/analyze@v2
42+
uses: github/codeql-action/analyze@v3
4343
with:
4444
category: '/language:${{ matrix.language }}'

.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 lib-boilerplate'
40-
title: 'chore: release lib-boilerplate'
39+
commit: 'chore: release workerkit'
40+
title: 'chore: release workerkit'
4141
env:
4242
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4343
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

README.md

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

3-
[![GitHub Actions](https://github.com/un-ts/lib-boilerplate/workflows/CI/badge.svg)](https://github.com/un-ts/lib-boilerplate/actions/workflows/ci.yml)
4-
[![Codecov](https://img.shields.io/codecov/c/github/un-ts/lib-boilerplate.svg)](https://codecov.io/gh/un-ts/lib-boilerplate)
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)
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/lib-boilerplate.svg)](https://www.npmjs.com/package/lib-boilerplate)
7-
[![GitHub Release](https://img.shields.io/github/release/un-ts/lib-boilerplate)](https://github.com/un-ts/lib-boilerplate/releases)
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)
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 lib-boilerplate
33+
pnpm add workerkit
3434

3535
# yarn
36-
yarn add lib-boilerplate
36+
yarn add workerkit
3737

3838
# npm
39-
npm i lib-boilerplate
39+
npm i workerkit
4040
```
4141

4242
### API
4343

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

4747
echo()
4848
```

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"name": "lib-boilerplate",
3-
"version": "0.1.0",
2+
"name": "workerkit",
3+
"version": "0.0.0",
44
"type": "module",
55
"description": "A simple library boilerplate.",
6-
"repository": "git+https://github.com/un-ts/lib-boilerplate.git",
6+
"repository": "git+https://github.com/un-ts/workerkit.git",
77
"author": "JounQin (https://www.1stG.me) <admin@1stg.me>",
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 'lib-boilerplate'
1+
import echo from 'workerkit'
22

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

tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"extends": "@1stg/tsconfig/node16",
33
"compilerOptions": {
4-
"module": "Node16",
54
"rootDir": "."
65
}
76
}

0 commit comments

Comments
 (0)