-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor thebeast into the new pnpm packages dir (#1772)
* Starting with a clean base * Move data and services to top level * Move remaining packages into the pnpm packages dir * Remove slonik from being a global object * Move primary app into package tree * Move remaining packages to tree, swap exports of shared to named imports * Remove deprecated package * Update Codecov flag mappings * Remove v18 from test matrix * Combine imports Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> * Revert "Combine imports" This reverts commit 94963d4. * Combine imports * Swap exports of database to named imports * Remove direct external access to Database class * Remove Database class * Add comments * Remove redundant error reporting * Correct logical check * Remove redundant error reporting * Formatting * Combine imports * Combine imports * Formatting and logging updates * Since the function is supposed to create a missing record, remove throw * Combine imports * Cleanup test * Combine imports * Combine imports * Mock logger * Combine imports * Update imports in _getCompleteVehicleInfo.ts * Remove unused code in UserAction class * Remove unused import in MiniRiffList.ts * Remove unused import statements and update async functions * Update version number in package.json --------- Co-authored-by: Molly Draven <[email protected]> Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
- Loading branch information
Showing
227 changed files
with
17,271 additions
and
24,846 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains 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 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,29 +1,28 @@ | ||
name: Sentry Release | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
release-sentry: | ||
runs-on: ubuntu-latest | ||
steps: | ||
release-sentry: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Install and Build | ||
run: | | ||
npm install | ||
- name: Install and Build | ||
run: | | ||
npm install | ||
- name: Create Sentry release | ||
uses: getsentry/action-release@v1 | ||
env: | ||
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} | ||
SENTRY_ORG: ${{ secrets.SENTRY_ORG }} | ||
SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }} | ||
# SENTRY_URL: https://sentry.io/ | ||
with: | ||
environment: production | ||
- name: Create Sentry release | ||
uses: getsentry/action-release@v1 | ||
env: | ||
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} | ||
SENTRY_ORG: ${{ secrets.SENTRY_ORG }} | ||
SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }} | ||
# SENTRY_URL: https://sentry.io/ | ||
with: | ||
environment: production |
This file contains 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 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 |
---|---|---|
|
@@ -11,3 +11,4 @@ dist | |
build | ||
*.tar | ||
packages/**/*.js | ||
package-lock.json |
Oops, something went wrong.