Skip to content

Commit

Permalink
chore: conversation fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
kiremitrov123 committed Nov 30, 2022
1 parent 9fee5c4 commit b2cf9cb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .env.dev
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
APP_CONFIG_DEFAULT_SOURCE=gnnuzabk
APP_UNSAFE_ALLOW_DYNAMIC_CONFIG=1
APP_API_BASE_URL=https://cdn.jwplayer.com
APP_API_BASE_URL=https://cdn.jwplayer.com
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ firebase-debug.log
.DS_Store
.vscode/

# env
.env.dev
# ignore local files
*.local
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
"start": "vite",
"start:test": "vite build --mode test && vite preview --port 8080",
"build": "vite build",
"test": "TZ=UTC vitest run",
"test-watch": "TZ=UTC vitest",
"test-coverage": "TZ=UTC vitest run --coverage",
"test": "TZ=UTC LC_ALL=en_US.UTF-8 vitest run",
"test-watch": "TZ=UTC LC_ALL=en_US.UTF-8 vitest",
"test-coverage": "TZ=UTC LC_ALL=en_US.UTF-8 vitest run --coverage",
"test-commit": "TZ=UTC LC_ALL=en_US.UTF-8 vitest run --changed HEAD~1 --coverage",
"test-update": "TZ=UTC vitest run --update",
"test-update": "TZ=UTC LC_ALL=en_US.UTF-8 vitest run --update",
"i18next": "i18next src/{components,containers,pages,services,stores}/**/{**/,/}*.{ts,tsx} && node ./scripts/i18next/generate.js",
"format": "run-s -c format:*",
"format:eslint": "eslint \"{**/*,*}.{js,ts,jsx,tsx}\" --fix",
Expand Down

0 comments on commit b2cf9cb

Please sign in to comment.