Skip to content

Commit b4b545d

Browse files
Downgrades typescript to 5.3.3 & Config fixes
Changeset
1 parent 2b8b738 commit b4b545d

File tree

6 files changed

+15
-11
lines changed

6 files changed

+15
-11
lines changed

.changeset/light-frogs-end.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@lilbunnyrabbit/utils": patch
3+
---
4+
5+
Downgrades `typescript` to `5.3.3` & Config fixes

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
node-version: 20.x
2424

2525
- name: Install Dependencies
26-
run: npm ci --force # --force is required for typedoc unitll it supports latest TypeScript
26+
run: npm ci
2727

2828
- name: Run tests
2929
run: npm test

docs/.nojekyll

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +0,0 @@
1-
TypeDoc added this file to prevent GitHub Pages from using Jekyll. You can turn off this behavior by setting the `githubPages` option to false.

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
"rimraf": "^5.0.5",
5959
"ts-jest": "^29.1.2",
6060
"typedoc": "^0.25.11",
61-
"typescript": "^5.4.2"
61+
"typescript": "^5.3.3"
6262
},
6363
"engines": {
6464
"node": ">=14.0.0",

tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,6 @@
106106
// "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
107107
"skipLibCheck": true /* Skip type checking all .d.ts files. */
108108
},
109-
"include": ["src", "src/core/README.md"],
110-
"exclude": ["node_modules", "lib"]
109+
"include": ["src"],
110+
"exclude": ["node_modules", "dist"]
111111
}

0 commit comments

Comments
 (0)