Skip to content

Commit 441c808

Browse files
committed
Bump devdeps
1 parent d1b05b2 commit 441c808

6 files changed

Lines changed: 21 additions & 16 deletions

File tree

.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.0' # Should match commit below
8-
uses: paulmillr/jsbt/.github/workflows/release.yml@3b4712c94bff7a5da5c968f783292061e81b218c
7+
name: 'jsbt v0.4.1'
8+
uses: paulmillr/jsbt/.github/workflows/release.yml@2318b9efe24831b4bd4cadf720c96f071c69c64d
99
with:
1010
build-path: test/build
1111
# slow-types: false

.github/workflows/test-js.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
name: Run tests
1+
name: Run JS tests
22
on:
33
- push
44
- pull_request
55
jobs:
66
test-js:
7-
name: 'jsbt v0.4.0' # Should match commit below
8-
uses: paulmillr/jsbt/.github/workflows/test-js.yml@3b4712c94bff7a5da5c968f783292061e81b218c
7+
name: 'jsbt v0.4.1'
8+
uses: paulmillr/jsbt/.github/workflows/test-js.yml@2318b9efe24831b4bd4cadf720c96f071c69c64d
99
# with:
1010
# submodules: false

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
node_modules
22
/lib
3+
*.js
34
*.d.ts
45
*.d.ts.map
56
*.js.map

package-lock.json

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

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
}
3030
},
3131
"devDependencies": {
32-
"@paulmillr/jsbt": "0.4.0",
32+
"@paulmillr/jsbt": "0.4.1",
3333
"micro-bmark": "0.4.1",
3434
"micro-should": "0.5.3",
3535
"prettier": "3.5.3",
@@ -45,7 +45,7 @@
4545
},
4646
"scripts": {
4747
"build": "tsc",
48-
"build:release": "npx jsbt esbuild test/build",
48+
"build:release": "npx --no @paulmillr/jsbt esbuild test/build",
4949
"lint": "prettier --check src",
5050
"format": "prettier --write src",
5151
"test": "cd test; npm run build:install; node test-node.js",

tsconfig.json

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
{
2-
"extends": "@paulmillr/jsbt/tsconfig.esm.json",
2+
"extends": "@paulmillr/jsbt/tsconfig.json",
33
"compilerOptions": {
4-
"lib": ["es2019", "dom"],
5-
"outDir": "lib"
4+
"baseUrl": ".",
5+
"outDir": "."
66
},
7-
"include": ["src"],
8-
"exclude": ["node_modules", "lib"]
7+
"include": [
8+
"src"
9+
],
10+
"exclude": [
11+
"node_modules"
12+
]
913
}

0 commit comments

Comments
 (0)