Skip to content

Commit d8efa59

Browse files
authored
Merge pull request #237 from objectstack-ai/copilot/update-action-run-parameters
2 parents a1ae0de + 3b108ae commit d8efa59

File tree

5 files changed

+44
-30
lines changed

5 files changed

+44
-30
lines changed

examples/msw-react-crud/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
"react-dom": "^18.3.1"
2121
},
2222
"devDependencies": {
23+
"@tailwindcss/postcss": "^4.1.18",
2324
"@types/react": "^18.3.1",
2425
"@types/react-dom": "^18.3.0",
2526
"@vitejs/plugin-react": "^4.3.4",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
export default {
22
plugins: {
3-
tailwindcss: {},
3+
'@tailwindcss/postcss': {},
44
autoprefixer: {},
55
},
66
}
Lines changed: 33 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,40 @@
1-
@tailwind base;
2-
@tailwind components;
3-
@tailwind utilities;
1+
@import "tailwindcss";
42

5-
:root {
6-
--background: #ffffff;
7-
--foreground: #000000;
3+
@layer base {
4+
:root {
5+
--background: #ffffff;
6+
--foreground: #000000;
87

9-
--accents-1: #fafafa;
10-
--accents-2: #eaeaea;
11-
--accents-3: #999999;
12-
--accents-4: #888888;
13-
--accents-5: #666666;
14-
--accents-6: #444444;
15-
--accents-7: #333333;
16-
--accents-8: #111111;
8+
--accents-1: #fafafa;
9+
--accents-2: #eaeaea;
10+
--accents-3: #999999;
11+
--accents-4: #888888;
12+
--accents-5: #666666;
13+
--accents-6: #444444;
14+
--accents-7: #333333;
15+
--accents-8: #111111;
1716

18-
--success-lighter: #d3e5ff;
19-
--success-light: #3291ff;
20-
--success: #0070f3;
21-
--success-dark: #0761d1;
17+
--success-lighter: #d3e5ff;
18+
--success-light: #3291ff;
19+
--success: #0070f3;
20+
--success-dark: #0761d1;
2221

23-
--error-lighter: #f7d4d6;
24-
--error-light: #ff1a1a;
25-
--error: #e00000;
26-
--error-dark: #c50000;
22+
--error-lighter: #f7d4d6;
23+
--error-light: #ff1a1a;
24+
--error: #e00000;
25+
--error-dark: #c50000;
2726

28-
--warning-lighter: #ffefcf;
29-
--warning-light: #f7b955;
30-
--warning: #f5a623;
31-
--warning-dark: #ab570a;
32-
}
27+
--warning-lighter: #ffefcf;
28+
--warning-light: #f7b955;
29+
--warning: #f5a623;
30+
--warning-dark: #ab570a;
31+
}
3332

34-
body {
35-
@apply bg-background text-foreground antialiased font-sans;
33+
body {
34+
background-color: var(--background);
35+
color: var(--foreground);
36+
-webkit-font-smoothing: antialiased;
37+
-moz-osx-font-smoothing: grayscale;
38+
font-family: 'Inter', sans-serif;
39+
}
3640
}

examples/msw-react-crud/vite.config.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,11 @@ export default defineConfig({
1515
'@objectstack/spec/system',
1616
'@objectstack/spec/ui'
1717
]
18+
},
19+
build: {
20+
commonjsOptions: {
21+
include: [/node_modules/, /packages/],
22+
transformMixedEsModules: true
23+
}
1824
}
1925
});

pnpm-lock.yaml

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)