Skip to content

Commit 37a6995

Browse files
committed
Bump devdeps
1 parent d9acb94 commit 37a6995

File tree

7 files changed

+55
-65
lines changed

7 files changed

+55
-65
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ on:
44
types: [created]
55
jobs:
66
release-js:
7-
name: 'jsbt v0.4.1'
8-
uses: paulmillr/jsbt/.github/workflows/release.yml@2318b9efe24831b4bd4cadf720c96f071c69c64d
7+
name: 'jsbt v0.4.2' # Should match commit below
8+
uses: paulmillr/jsbt/.github/workflows/release.yml@5194a28c9f94ad504090fe037fe6efb41e5b8964
99
with:
1010
build-path: test/build
1111
# slow-types: false

.github/workflows/test-ts.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ on:
33
- push
44
- pull_request
55
jobs:
6-
test-js:
7-
name: 'jsbt v0.4.1'
8-
uses: paulmillr/jsbt/.github/workflows/test-ts.yml@2318b9efe24831b4bd4cadf720c96f071c69c64d
9-
# with:
10-
# submodules: false
6+
test-ts:
7+
name: 'jsbt v0.4.2' # Should match commit below
8+
uses: paulmillr/jsbt/.github/workflows/test-ts.yml@5194a28c9f94ad504090fe037fe6efb41e5b8964

.gitignore

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
node_modules
2-
/lib
2+
*.tgz
3+
/*.js
4+
*.js.map
35
*.d.ts
46
*.d.ts.map
5-
*.js.map
67
/test/build
8+
/test/compiled

package-lock.json

Lines changed: 24 additions & 27 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 17 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -10,29 +10,16 @@
1010
"index.ts"
1111
],
1212
"devDependencies": {
13-
"@paulmillr/jsbt": "0.4.1",
14-
"@types/node": "22.15.23",
15-
"micro-bmark": "0.4.1",
13+
"@paulmillr/jsbt": "0.4.2",
14+
"@types/node": "24.2.1",
15+
"micro-bmark": "0.4.2",
1616
"micro-should": "0.5.3",
17-
"prettier": "3.5.2",
18-
"typescript": "5.8.3"
17+
"prettier": "3.6.2",
18+
"typescript": "5.9.2"
1919
},
20-
"sideEffects": false,
21-
"author": "Paul Miller (https://paulmillr.com)",
22-
"license": "MIT",
23-
"homepage": "https://github.com/paulmillr/micro-ftch",
24-
"repository": {
25-
"type": "git",
26-
"url": "git+https://github.com/paulmillr/micro-ftch.git"
27-
},
28-
"type": "module",
29-
"main": "./index.js",
30-
"module": "./index.js",
31-
"types": "./index.d.ts",
3220
"scripts": {
3321
"build": "tsc",
34-
"build:release": "npx jsbt esbuild test/build",
35-
"lint": "prettier --check index.ts",
22+
"build:release": "npx --no @paulmillr/jsbt esbuild test/build",
3623
"format": "prettier --write index.ts",
3724
"test": "node --experimental-strip-types --no-warnings test/index.ts",
3825
"test:bun": "bun test/index.ts",
@@ -49,5 +36,15 @@
4936
"replay",
5037
"ftch"
5138
],
52-
"funding": "https://paulmillr.com/funding/"
39+
"repository": {
40+
"type": "git",
41+
"url": "git+https://github.com/paulmillr/micro-ftch.git"
42+
},
43+
"type": "module",
44+
"main": "index.js",
45+
"module": "index.js",
46+
"types": "index.d.ts",
47+
"sideEffects": false,
48+
"author": "Paul Miller (https://paulmillr.com)",
49+
"license": "MIT"
5350
}

test/build/package-lock.json

Lines changed: 5 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"extends": "@paulmillr/jsbt/tsconfig.json",
33
"compilerOptions": {
4-
"baseUrl": ".",
54
"outDir": "."
65
},
76
"include": [

0 commit comments

Comments
 (0)