Skip to content

Commit e1a0d0d

Browse files
committed
feat: mvp
Signed-off-by: Lexus Drumgold <[email protected]>
1 parent 5b836ba commit e1a0d0d

File tree

197 files changed

+23333
-513
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

197 files changed

+23333
-513
lines changed

.codecov.yml

Lines changed: 34 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,32 @@ comment:
1818
show_carryforward_flags: true
1919
show_critical_paths: true
2020

21-
component_management: []
21+
component_management:
22+
default_rules:
23+
statuses:
24+
- type: project
25+
target: 100%
26+
individual_components:
27+
- component_id: constructs
28+
name: constructs
29+
paths:
30+
- src/constructs/*.mts
31+
- component_id: errors
32+
name: errors
33+
paths:
34+
- src/errors/*.mts
35+
- component_id: internal
36+
name: internal
37+
paths:
38+
- src/internal/*.mts
39+
- component_id: lib
40+
name: lib
41+
paths:
42+
- src/lib/*.mts
43+
- component_id: utils
44+
name: utils
45+
paths:
46+
- src/utils/*.mts
2247

2348
coverage:
2449
precision: 2
@@ -79,10 +104,15 @@ ignore:
79104
- '**/*.d.mts'
80105
- '**/__mocks__/'
81106
- '**/__tests__/'
82-
- '**/index.mts'
83107
- '**/interfaces/'
84108
- '**/types/'
85-
- '!src/index.mts'
86109

87110
profiling:
88-
critical_files_paths: []
111+
critical_files_paths:
112+
- src/constructs/delimiter.mts
113+
- src/constructs/flag-long.mts
114+
- src/constructs/flag-short.mts
115+
- src/constructs/operand.mts
116+
- src/lib/argument.mts
117+
- src/lib/command.mts
118+
- src/lib/option.mts

.commitlintrc.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,11 @@ import { scopes } from '@flex-development/commitlint-config'
1818
const config: UserConfig = {
1919
extends: ['@flex-development'],
2020
rules: {
21-
'scope-enum': [Severity.Error, 'always', scopes(['chore'])]
21+
'scope-enum': [Severity.Error, 'always', scopes([
22+
'chore',
23+
'constructs',
24+
'errors'
25+
])]
2226
}
2327
}
2428

.dictionary.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,25 @@ docast
88
dohm
99
dprint
1010
esbuild
11+
exiter
1112
fbca
1213
ggshield
1314
gpgsign
1415
hmarr
1516
jchen
1617
kaisugi
1718
kronk
19+
ksort
1820
nvmrc
1921
pkgs
2022
remarkrc
2123
rollup
2224
sarif
25+
sfmt
2326
shfmt
27+
tribonacci
2428
unstub
29+
variadics
2530
vates
2631
vitest
2732
yarnrc

.github/dependabot.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,6 @@ updates:
4040
flex-development:
4141
patterns:
4242
- '@flex-development/*'
43-
nestjs:
44-
patterns:
45-
- '@nestjs/*'
4643
remark:
4744
patterns:
4845
- 'remark-*'

.github/workflows/ci.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -250,13 +250,8 @@ jobs:
250250
- gitguardian
251251
- preflight
252252
runs-on: ubuntu-latest
253-
strategy:
254-
fail-fast: false
255-
matrix:
256-
typescript-version:
257-
- ${{ needs.preflight.outputs.version-typescript }}
258253
env:
259-
TYPESCRIPT_VERSION: ${{ matrix.typescript-version }}
254+
TYPESCRIPT_VERSION: ${{ needs.preflight.outputs.version-typescript }}
260255
VITEST_REPORT: ./.vitest-reports/typecheck.blob.json
261256
if: ${{ fromJson(needs.preflight.outputs.typecheck-files) }}
262257
steps:
@@ -336,6 +331,8 @@ jobs:
336331
path: ${{ env.CACHE_PATH }}
337332
- id: test
338333
name: Run tests
334+
env:
335+
TZ: ${{ vars.TZ }}
339336
run: |
340337
yarn test:cov --coverage.thresholds.100=false \
341338
&& echo "coverage=$(jq '${{ env.PCT }}' ${{ env.COVERAGE_SUMMARY }} -r)" >>$GITHUB_OUTPUT

.github/workflows/lock-inactive-threads.yml

Lines changed: 0 additions & 38 deletions
This file was deleted.

.github/workflows/no-response.yml

Lines changed: 0 additions & 43 deletions
This file was deleted.

.github/workflows/typescript-canary.yml

Lines changed: 0 additions & 79 deletions
This file was deleted.

0 commit comments

Comments
 (0)