Skip to content

Commit 7083c19

Browse files
committed
fix: TypeScript emitting files by default. Update to dependencies. Adjustments to release action
1 parent 5b5129a commit 7083c19

File tree

4 files changed

+24
-22
lines changed

4 files changed

+24
-22
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,12 @@ jobs:
2626
with:
2727
node-version: 'lts/*'
2828
- name: Install dependencies
29-
run: npm clean-install && npm i -D @semantic-release/changelog @semantic-release/commit-analyzer @semantic-release/git @semantic-release/release-notes-generator
29+
run: npm clean-install
30+
- name: Install semantic-release
31+
run: npm i -g @semantic-release/changelog @semantic-release/commit-analyzer @semantic-release/git @semantic-release/release-notes-generator && semantic-release
3032
- name: Verify the integrity of provenance attestations and registry signatures for installed dependencies
3133
run: npm audit signatures
3234
- name: Release
3335
env:
3436
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
35-
run: npx semantic-release
37+
run: semantic-release

package-lock.json

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

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "1.0.0",
44
"private": false,
55
"dependencies": {
6-
"@apollo/client": "^3.7.16",
6+
"@apollo/client": "^3.7.17",
77
"@emotion/cache": "^11.11.0",
88
"@emotion/react": "^11.11.1",
99
"@emotion/server": "^11.11.0",
@@ -59,7 +59,7 @@
5959
"start": "next start",
6060
"studio": "prisma studio",
6161
"test": "jest",
62-
"type-check": "tsc",
62+
"type-check": "tsc --noEmit",
6363
"type-check:watch": "tsc --watch --preserveWatchOutput",
6464
"update-deps": "npx npm-check-updates -i",
6565
"watch-queries": "graphql-codegen --config codegen.yml --watch"
@@ -77,7 +77,7 @@
7777
"@testing-library/dom": "^9.3.1",
7878
"@testing-library/jest-dom": "^5.16.5",
7979
"@testing-library/react": "^14.0.0",
80-
"@types/node": "^20.4.0",
80+
"@types/node": "^20.4.1",
8181
"@types/react": "^18.2.14",
8282
"@types/react-dom": "^18.2.6",
8383
"@typescript-eslint/eslint-plugin": "^5.61.0",

tsconfig.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@
2626
"sourceMap": true,
2727
"outDir": "dist",
2828
"incremental": true,
29-
"noEmit": true
29+
"noEmit": false
3030
},
31-
"exclude": ["node_modules"],
32-
"include": ["**/*.ts", "**/*.tsx", "types.d.ts", "src/types/**/*.d.ts"],
31+
"exclude": ["node_modules", "tests", "setupTests.ts"],
32+
"include": ["src/**/*.ts", "src/**/*.tsx", "src/types/**/*.d.ts", "prisma/**/*.ts"],
3333
"ts-node": {
3434
"transpileOnly": true,
3535
"transpiler": "ts-node/transpilers/swc-experimental"

0 commit comments

Comments
 (0)