Skip to content

Commit

Permalink
chore: update github files
Browse files Browse the repository at this point in the history
  • Loading branch information
HugoRCD committed Apr 1, 2024
1 parent 0ead183 commit 9519fd3
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 30 deletions.
7 changes: 1 addition & 6 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,10 @@ Here are the available types:
- chore (updates to the build process or auxiliary tools and libraries) 📦
- perf (a code change that improves performance) ⚡️
- style (changes that do not affect the meaning of the code) 💅
- tests (adding or updating tests) 🧪
- test (adding or updating tests) 🧪
- refactor (a code change that neither fixes a bug nor adds a feature) 🛠
- revert (reverts a previous commit) 🔄
we can also use the following scopes:
- app
- cli
- docs
-->

### 🔗 Linked issue
Expand Down
8 changes: 1 addition & 7 deletions .github/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,8 @@ changelog:
- title: Features 🚀
labels:
- feature
- feat
- title: Bug Fixes 🐞
labels:
- fix
- bug
- title: Build System 🛠
labels:
Expand All @@ -24,26 +22,22 @@ changelog:
- ci
- title: Documentation 📚
labels:
- docs
- documentation
- title: Enhancements 🌈
labels:
- enhancement
- title: Dependency Updates 📦
labels:
- chore
- dependencies
- title: Performance Improvements ⚡️
labels:
- perf
- performance
- title: Style 💅
labels:
- style
- lint
- title: Tests 🧪
labels:
- tests
- test
- title: Refactoring 🛠
labels:
- refactor
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/label-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
chore: 'chore',
perf: 'performance',
style: 'style',
tests: 'tests',
test: 'test',
refactor: 'refactor',
revert: 'revert'
}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/semantic-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
chore
performance
style
tests
test
refactor
revert
env:
Expand Down
26 changes: 11 additions & 15 deletions apps/cli/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,18 @@
{
"compilerOptions": {
"lib": ["ESNext"],
"esModuleInterop": false,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"target": "ESNext",
"module": "ESNext",
"moduleDetection": "force",
"jsx": "react-jsx",
"moduleResolution": "Node",
"strict": true,
"noImplicitAny": true,
"allowJs": true,

/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"noEmit": true,

/* Linting */
"skipLibCheck": true,
"strict": true,
"noFallthroughCasesInSwitch": true,
"forceConsistentCasingInFileNames": true
}
"noUnusedLocals": true,
"resolveJsonModule": true,
"types": ["node", "./types"],
},
"include": ["src"]
}
Binary file modified bun.lockb
Binary file not shown.

0 comments on commit 9519fd3

Please sign in to comment.