Skip to content

Commit c44ec28

Browse files
committed
chore: lint
1 parent ec1ba90 commit c44ec28

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,18 +87,23 @@ jobs:
8787
runs-on: ubuntu-latest
8888
steps:
8989
- uses: actions/checkout@v4
90+
9091
- name: Install Bun
9192
uses: oven-sh/setup-bun@v2
93+
9294
- name: Use cached node_modules
9395
uses: actions/cache@v4
9496
with:
9597
path: node_modules
9698
key: node-modules-${{ hashFiles('**/bun.lock') }}
9799
restore-keys: |
98100
node-modules-
101+
99102
- name: Install Dependencies
100103
run: bun install
104+
101105
- name: Build
102106
run: bun run build
107+
103108
- name: Publish Commit
104109
run: bunx pkg-pr-new publish

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,9 @@
6868
"zip:darwin-arm64": "zip -j bin/dtsx-darwin-arm64.zip bin/dtsx-darwin-arm64"
6969
},
7070
"devDependencies": {
71-
"@stacksjs/docs": "^0.70.23",
7271
"@stacksjs/cli": "^0.70.23",
7372
"@stacksjs/development": "^0.70.23",
73+
"@stacksjs/docs": "^0.70.23",
7474
"@stacksjs/eslint-config": "^4.10.2-beta.3",
7575
"@types/bun": "^1.2.12",
7676
"bun-plugin-dtsx": "^0.21.12",

test/dts.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import type { DtsGenerationOption } from '../src/types'
22
import { afterEach, describe, expect, it } from 'bun:test'
3+
import { rm } from 'node:fs/promises'
34
import { join } from 'node:path'
45
import { generate } from '../src/generate'
5-
import { rm } from 'node:fs/promises'
66

77
describe('dts-generation', () => {
88
const testDir = join(__dirname, '../fixtures')

0 commit comments

Comments
 (0)