Skip to content
This repository has been archived by the owner on Jan 2, 2025. It is now read-only.

Commit

Permalink
fix lint and format commands
Browse files Browse the repository at this point in the history
  • Loading branch information
horacioh committed Jan 9, 2024
1 parent ce2beb6 commit b4255a8
Show file tree
Hide file tree
Showing 6 changed files with 657 additions and 28 deletions.
1 change: 1 addition & 0 deletions .envrc
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,6 @@ export VITE_VERSION="0.0.100"
export GOROOT="$(go env GOROOT)"

export VITE_HM_SENTRY_DESKTOP_DSN="https://8d3089ffb71045dc911bc66efbd3463a@o4504088793841664.ingest.sentry.io/4505527460429824"
export HM_SENTRY_DESKTOP_DSN="https://8d3089ffb71045dc911bc66efbd3463a@o4504088793841664.ingest.sentry.io/4505527460429824"

# NODE_ENV=test VITE_DESKTOP_P2P_PORT=5800 VITE_DESKTOP_HTTP_PORT=58001 VITE_DESKTOP_GRPC_PORT=58002 VITE_DESKTOP_APPDATA=appData.test.local
4 changes: 3 additions & 1 deletion .github/workflows/desktop-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,13 +117,14 @@ jobs:
VITE_VERSION: "${{ needs.get-version.outputs.version }}"
# VITE_VERSION: "0.0.100"
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
timeout-minutes: 10
VITE_DESKTOP_P2P_PORT: "55000"
VITE_DESKTOP_HTTP_PORT: "55001"
VITE_DESKTOP_GRPC_PORT: "55002"
VITE_DESKTOP_DESKTOP_APPDATA: "Mintter"
VITE_DESKTOP_HOSTNAME: "http://localhost"
VITE_HM_SENTRY_DESKTOP_DSN: "${{ secrets.HM_SENTRY_SITE_DSN }}"
SENTRY_AUTH_TOKEN: "${{ secrets.SENTRY_AUTH_TOKEN }}"

- name: Build, package and make (Win32)
if: matrix.config.os == 'windows-latest-l'
Expand All @@ -134,6 +135,7 @@ jobs:
DAEMON_NAME: "${{ matrix.config.daemon_name }}.exe"
VITE_VERSION: "${{ needs.get-version.outputs.version }}"
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
VITE_HM_SENTRY_DESKTOP_DSN: "${{ secrets.HM_SENTRY_SITE_DSN }}"
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}

- name: Upload Artifacts
Expand Down
2 changes: 1 addition & 1 deletion frontend/apps/desktop/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"main": ".vite/build/main.js",
"scripts": {
"dev": "electron-forge start",
"format": "prettier \"**/*.{ts,tsx,md,mdx,json}\" --check --ignore-path ../../../.prettierignore",
"format": "echo TODO",
"lint": "echo TODO",
"make": "electron-forge make",
"package": "electron-forge package",
Expand Down
2 changes: 1 addition & 1 deletion frontend/apps/site/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"next:build": "yarn next build",
"start": "yarn next start",
"serve": "NODE_ENV=production yarn next start --port 8151",
"lint": "next lint",
"lint": "echo TODO",
"format": "prettier \"**/*.{ts,tsx,md,mdx,json,js}\" --check --ignore-path ../../../.prettierignore",
"test": "echo 'SITE: NO TESTS';",
"with-env": "TAMAGUI_TARGET=web"
Expand Down
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
"docs": "yarn workspace @mintter/docs start",
"upgrade:tamagui": "yarn up '*tamagui*'@latest '@tamagui/*'@latest",
"lint": "yarn turbo lint",
"lint:fix": "yarn turbo lint:fix",
"generate": "yarn turbo gen",
"ui:build": "yarn workspace @mintter/ui generate && yarn workspace @mintter/ui build",
"gen": "yarn generate",
Expand Down
Loading

0 comments on commit b4255a8

Please sign in to comment.