Skip to content

Commit 8df0255

Browse files
committed
release 1.0.0
1 parent b31373f commit 8df0255

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
3333
with:
3434
node-version: 24
35-
cache: 'pnpm'
35+
cache: pnpm
3636

3737
- name: Install dependencies
3838
run: pnpm install --frozen-lockfile
@@ -54,7 +54,7 @@ jobs:
5454
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
5555
with:
5656
node-version: 24
57-
cache: 'pnpm'
57+
cache: pnpm
5858

5959
- name: Install dependencies
6060
run: pnpm install --frozen-lockfile

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
with:
2222
node-version: 24
2323
registry-url: 'https://registry.npmjs.org'
24-
cache: 'pnpm'
24+
cache: pnpm
2525

2626
- name: Install dependencies
2727
run: pnpm install --frozen-lockfile

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "g-detector",
3-
"version": "0.1.6",
3+
"version": "1.0.0",
44
"description": "A powerful JavaScript library to detect the letter G",
55
"type": "module",
66
"scripts": {
77
"build": "tsdown --dts",
88
"check": "biome check",
9+
"check:fix": "biome check --write --unsafe",
910
"format": "biome format --write",
1011
"lint": "biome lint",
11-
"lint:fix": "biome lint --fix --unsafe",
1212
"test": "node --experimental-transform-types --test \"test/**/*.test.ts\"",
1313
"typecheck": "tsc"
1414
},

0 commit comments

Comments
 (0)