-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow building standalone file. Switch to jsbt for tsconfig
- Loading branch information
Showing
8 changed files
with
59 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
github: paulmillr | ||
# custom: https://paulmillr.com/funding/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Node CI | ||
name: Run node.js tests | ||
on: | ||
- push | ||
- pull_request | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Publish Package to npm | ||
name: Publish package to npm | ||
on: | ||
release: | ||
types: [created] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: Upload standalone file to GitHub Releases | ||
on: | ||
release: | ||
types: [created] | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
id-token: write | ||
steps: | ||
- uses: actions/checkout@1e31de5234b9f8995739874a8ce0492dc87873e2 # v4 | ||
- uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4 | ||
with: | ||
node-version: 20 | ||
registry-url: 'https://registry.npmjs.org' | ||
cache: npm | ||
- run: npm install -g npm | ||
- run: npm ci | ||
- run: npm run build | ||
- run: | | ||
cd build | ||
npm ci | ||
npm run build:release | ||
cd .. | ||
- run: gh release upload ${{ github.event.release.tag_name }} build/`npx jsbt outfile` | ||
env: | ||
GH_TOKEN: ${{ github.token }} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,10 @@ | ||
{ | ||
"extends": "@paulmillr/jsbt/tsconfigs/esm.json", | ||
"compilerOptions": { | ||
"target": "es2020", | ||
"lib": ["es2020"], | ||
"strict": true, | ||
"sourceMap": false, | ||
"allowSyntheticDefaultImports": false, | ||
"allowUnreachableCode": false, | ||
"esModuleInterop": false, | ||
"noFallthroughCasesInSwitch": true, | ||
"noImplicitReturns": true, | ||
"noUncheckedIndexedAccess": false, | ||
"noUnusedLocals": true, | ||
"noUnusedParameters": true, | ||
"baseUrl": ".", | ||
|
||
"module": "es2020", | ||
"outDir": "lib/esm", | ||
"moduleResolution": "bundler" | ||
"moduleResolution": "bundler", | ||
"outDir": "lib/esm" | ||
}, | ||
"include": ["index.ts"], | ||
"include": ["index.ts", "src"], | ||
"exclude": ["node_modules", "lib"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,8 @@ | ||
{ | ||
"extends": "./tsconfig.esm.json", | ||
"extends": "@paulmillr/jsbt/tsconfigs/cjs.json", | ||
"compilerOptions": { | ||
"module": "commonjs", | ||
"moduleResolution": "node10", | ||
"outDir": "lib", | ||
"declaration": true, | ||
"declarationMap": true | ||
} | ||
"outDir": "lib" | ||
}, | ||
"include": ["index.ts", "src"], | ||
"exclude": ["node_modules", "lib"] | ||
} |