Skip to content

Commit

Permalink
fix: TypeScript emitting files by default. Update to dependencies. Ad…
Browse files Browse the repository at this point in the history
…justments to release action
  • Loading branch information
keonik committed Jul 10, 2023
1 parent 5b5129a commit 7083c19
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 22 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,12 @@ jobs:
with:
node-version: 'lts/*'
- name: Install dependencies
run: npm clean-install && npm i -D @semantic-release/changelog @semantic-release/commit-analyzer @semantic-release/git @semantic-release/release-notes-generator
run: npm clean-install
- name: Install semantic-release
run: npm i -g @semantic-release/changelog @semantic-release/commit-analyzer @semantic-release/git @semantic-release/release-notes-generator && semantic-release
- name: Verify the integrity of provenance attestations and registry signatures for installed dependencies
run: npm audit signatures
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: npx semantic-release
run: semantic-release
28 changes: 14 additions & 14 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "1.0.0",
"private": false,
"dependencies": {
"@apollo/client": "^3.7.16",
"@apollo/client": "^3.7.17",
"@emotion/cache": "^11.11.0",
"@emotion/react": "^11.11.1",
"@emotion/server": "^11.11.0",
Expand Down Expand Up @@ -59,7 +59,7 @@
"start": "next start",
"studio": "prisma studio",
"test": "jest",
"type-check": "tsc",
"type-check": "tsc --noEmit",
"type-check:watch": "tsc --watch --preserveWatchOutput",
"update-deps": "npx npm-check-updates -i",
"watch-queries": "graphql-codegen --config codegen.yml --watch"
Expand All @@ -77,7 +77,7 @@
"@testing-library/dom": "^9.3.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/node": "^20.4.0",
"@types/node": "^20.4.1",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@typescript-eslint/eslint-plugin": "^5.61.0",
Expand Down
6 changes: 3 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@
"sourceMap": true,
"outDir": "dist",
"incremental": true,
"noEmit": true
"noEmit": false
},
"exclude": ["node_modules"],
"include": ["**/*.ts", "**/*.tsx", "types.d.ts", "src/types/**/*.d.ts"],
"exclude": ["node_modules", "tests", "setupTests.ts"],
"include": ["src/**/*.ts", "src/**/*.tsx", "src/types/**/*.d.ts", "prisma/**/*.ts"],
"ts-node": {
"transpileOnly": true,
"transpiler": "ts-node/transpilers/swc-experimental"
Expand Down

0 comments on commit 7083c19

Please sign in to comment.