Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/ten-moles-hang.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"landscape-ui": patch
---

Fix CSS ordering inconsistency between dev and production builds
3 changes: 2 additions & 1 deletion eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ export default defineConfig(
ignores: [
"dist",
"dist-ssr",
"assets",
"node_modules",
"playwright-report",
"playwright",
Expand Down Expand Up @@ -65,7 +66,7 @@ export default defineConfig(
...globals.jest,
},

ecmaVersion: 5,
ecmaVersion: "latest",

parserOptions: {
projectService: true,
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"dev": "vite --host",
"build": "pnpm run lint && pnpm run tcm:run && tsc && vite build",
"build:e2e": "pnpm run build --mode e2e",
"lint": "eslint --fix . --ext .ts,.tsx",
"lint": "eslint --fix src e2e",
"preview": "vite preview",
"test": "pnpm exec playwright test",
"test:saas": "VITE_SELF_HOSTED_ENV=false pnpm exec playwright test --project=saas",
Expand Down
5 changes: 4 additions & 1 deletion src/styles/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@

// Vanilla
@import "vanilla-framework";
@include vanilla;

@layer vanilla {
@include vanilla;
}

// Custom styles
@import "partials/base";
Expand Down
Loading