forked from anuraghazra/github-readme-stats
-
Notifications
You must be signed in to change notification settings - Fork 10
extract "core" package, small improvements #137
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
martin-mfg
wants to merge
56
commits into
master
Choose a base branch
from
npm-package
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
56 commits
Select commit
Hold shift + click to select a range
bd0f376
WIP: move headers, cache and db to router; introduce config handler; …
martin-mfg 61da8c2
delete backend barrel files
martin-mfg ab7f4fa
move core files to separate folder, align package.json-s, remove pack…
martin-mfg e60dafe
migrate 'guardAccess' calls to 'backend', rename 'package' to 'core'
martin-mfg a11c137
migrate core-related tests to core, migrate getUserPat to backend, pa…
martin-mfg 60314be
adapt 1st backend test to new structure
martin-mfg 1731c7d
decouple userPAT from query params
martin-mfg 17fb331
adapt /api test to new structure, add backend snapshot tests for /api…
martin-mfg a12a325
adapt /pin tests to new structure
martin-mfg 9ef6dab
adapt top-langs tests to new structure
martin-mfg 134f946
adapt wakatime tests to new structure, remove private-instance test s…
martin-mfg cc2d058
add 1 many-params test to each public-instance/* file
martin-mfg ce0da37
collect shared test coverage
martin-mfg 2e0e17e
package imports in frontend, fix 'themes' paths
martin-mfg 97f8161
adapt pipeline + import paths + vercel-preparation.sh + build command
martin-mfg 3dc5e9a
adapt express.js & all remaining tests, fix code analysis issues, fix…
martin-mfg 6b9dd27
update lockfile
martin-mfg fa4cd54
add grs-action, fix dependabot
martin-mfg 2ca88cd
add debug logs
martin-mfg bf0d7f5
fix action test, remove debug logs
martin-mfg 2f1332d
add debug logs again
martin-mfg e9092f5
debug logs
martin-mfg 55b5119
try fix action
martin-mfg c3593c4
remove debug log
martin-mfg 0009eb4
upgrade some dependencies, fix new warnings, update lang colors
martin-mfg c11f7ae
move core/ to packages/, scope packages
martin-mfg fd386af
specify core exports, move core/api to core/src, improve pat-info tes…
martin-mfg 12c1a72
remove action, small cleanup
martin-mfg 74436d4
adapt package.json, move index.js, precise permissions, pin workflows…
martin-mfg 6113a79
cast DEMO_* constants to string
martin-mfg d57c76f
exact dev dependency versions, ^ regular dependency versions
martin-mfg c94a10a
fix core standalone testing
martin-mfg d1a948c
fix `core` standalone testing (#138)
martin-mfg c6cfa80
fix eslint errors
marcalexiei d807afe
chore: dedupe deps
marcalexiei cb6698d
core package build
marcalexiei 33edff0
chore: use customConditions for realtime typecheck
marcalexiei 6c4901a
fix: frontend are not executed
marcalexiei 5b23348
chore: add npm-package branch trigger
marcalexiei 821d292
ci: simplify test workflow
marcalexiei bca4a19
refactor: improve tsconfig names
marcalexiei 1b1b7d0
chore: fix index ts comment
marcalexiei d36564a
test: use customConditions for vitest, use defineProject for relevant…
marcalexiei 54a5f33
chore(turbo): remove `test` entry
marcalexiei 8201ffb
fix: cleanup vitest deps and fix core `main` package field
marcalexiei a0acf0c
chore: add conditions also to frontend vite config
marcalexiei 4f6ae16
try fix for vercel build
marcalexiei 3fbfc21
add docs about TURBO_PLATFORM_ENV_DISABLED
martin-mfg b32eddb
refactor: remove ts-expect-error comments
marcalexiei e85a0dd
fix(core): invalid main field
marcalexiei 1acb8e7
refactor(core): dedupe theme names
marcalexiei ab1f6f7
ci: add frontend build to build-and-test job
marcalexiei a370863
test: explcit vite(st) config files used in the root config
marcalexiei 11f971d
chore(core): remove ThemeName
marcalexiei 5daada6
feat: `core` package build (#139)
martin-mfg 83722ed
separata coverage config, remove temp. trigger
martin-mfg File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| name: Update version tags | ||
| on: | ||
| push: | ||
| branches-ignore: | ||
| - "**" | ||
| tags: | ||
| - "v*.*.*" | ||
|
|
||
| permissions: {} | ||
|
|
||
| jobs: | ||
| update-semver: | ||
| runs-on: ubuntu-latest | ||
| permissions: | ||
| contents: write | ||
| steps: | ||
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | ||
| - uses: haya14busa/action-update-semver@7d2c558640ea49e798d46539536190aff8c18715 # v1.5.1 | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,3 @@ | ||
| pnpm lint-staged | ||
| pnpm run lint | ||
| # TODO enable | ||
| # npm test | ||
| pnpm test |
76 changes: 0 additions & 76 deletions
76
apps/backend/_dot_vercel_copy/output/functions/api.func/router.js
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.