Skip to content

Commit

Permalink
fix: locales vitest (#3820)
Browse files Browse the repository at this point in the history
  • Loading branch information
lisalupi committed May 24, 2024
1 parent ee571dd commit c2e14d3
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/form/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"prebuild": "shx rm -rf dist",
"size": "pnpm run build && size-limit",
"test:unit:coverage": "pnpm test:unit --coverage",
"test:unit": "vitest --run --config vite.config.ts",
"test:unit": "LC_ALL=en_US.UTF-8 pnpm vitest --run --config vite.config.ts",
"type:generate": "tsc --declaration -p tsconfig.build.json",
"typecheck": "tsc --noEmit",
"watch:build": "vite build --config vite.config.ts --watch",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1564,4 +1564,4 @@ exports[`TimeField > should trigger events 1`] = `
</form>
</div>
</DocumentFragment>
`;
`;
2 changes: 1 addition & 1 deletion packages/illustrations/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"build:profile": "npx vite-bundle-visualizer -c vite.config.ts",
"typecheck": "tsc --noEmit",
"size": "pnpm run build && size-limit",
"test:unit": "vitest --run --config vite.config.ts",
"test:unit": "LC_ALL=en_US.UTF-8 pnpm vitest --run --config vite.config.ts",
"test:unit:coverage": "pnpm test:unit --coverage"
},
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion packages/plus/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"build:profile": "npx vite-bundle-visualizer -c vite.config.ts",
"typecheck": "tsc --noEmit",
"size": "pnpm run build && size-limit",
"test:unit": "vitest --run --config vite.config.ts",
"test:unit": "LC_ALL=en_US.UTF-8 pnpm vitest --run --config vite.config.ts",
"test:unit:coverage": "pnpm test:unit --coverage"
},
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"build:profile": "npx vite-bundle-visualizer -c vite.config.ts",
"typecheck": "tsc --noEmit",
"size": "pnpm run build && size-limit",
"test:unit": "vitest --run --config vite.config.ts",
"test:unit": "LC_ALL=en_US.UTF-8 pnpm vitest --run --config vite.config.ts",
"test:unit:coverage": "pnpm test:unit --coverage"
},
"keywords": [
Expand Down

0 comments on commit c2e14d3

Please sign in to comment.