Skip to content

Commit 1469286

Browse files
committed
update workflows and formatting/docs
1 parent 3bfb960 commit 1469286

File tree

4 files changed

+7
-16
lines changed

4 files changed

+7
-16
lines changed

.github/workflows/typedoc.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ jobs:
2222
runs-on: ubuntu-latest
2323
steps:
2424
- name: Checkout
25-
uses: actions/checkout@v4
25+
uses: actions/checkout@v5
2626
- name: Use Nodejs ${{ matrix.node-version }}
27-
uses: actions/setup-node@v4
27+
uses: actions/setup-node@v6
2828
with:
2929
node-version: 20.x
3030
- name: Install dependencies
@@ -33,7 +33,7 @@ jobs:
3333
run: npm run typedoc
3434

3535
- name: Setup Pages
36-
uses: actions/configure-pages@v4
36+
uses: actions/configure-pages@v5
3737
- name: Upload artifact
3838
uses: actions/upload-pages-artifact@v4
3939
with:

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,4 @@
1515
/test/fixture
1616
/test/fixtures
1717
/.tshy
18+
/docs

package.json

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"test": "tap",
4444
"snap": "tap",
4545
"format": "prettier --write . --log-level warn",
46-
"typedoc": "typedoc --tsconfig .tshy/esm.json ./src/*.ts",
46+
"typedoc": "typedoc",
4747
"profclean": "rm -f v8.log profile.txt",
4848
"test-regen": "npm run profclean && TEST_REGEN=1 node --no-warnings --loader ts-node/esm test/00-setup.ts",
4949
"prebench": "npm run prepare",
@@ -52,18 +52,6 @@
5252
"prof": "bash prof.sh",
5353
"benchclean": "node benchclean.cjs"
5454
},
55-
"prettier": {
56-
"experimentalTernaries": true,
57-
"semi": false,
58-
"printWidth": 75,
59-
"tabWidth": 2,
60-
"useTabs": false,
61-
"singleQuote": true,
62-
"jsxSingleQuote": false,
63-
"bracketSameLine": true,
64-
"arrowParens": "avoid",
65-
"endOfLine": "lf"
66-
},
6755
"dependencies": {
6856
"minimatch": "^10.1.1",
6957
"minipass": "^7.1.2",

typedoc.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
{
2+
"tsconfig": "./.tshy/esm.json",
3+
"entryPoints": ["./src/**/*.+(ts|tsx|mts|cts)"],
24
"navigationLinks": {
35
"GitHub": "https://github.com/isaacs/node-glob",
46
"isaacs projects": "https://isaacs.github.io/"

0 commit comments

Comments
 (0)