Skip to content

Commit 79f65be

Browse files
committed
fix: use spaces instead of tabs!
1 parent 746d5e5 commit 79f65be

File tree

8 files changed

+680
-680
lines changed

8 files changed

+680
-680
lines changed

README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -55,21 +55,21 @@ By default the utopia entry in tailwindcss config is as follows:
5555

5656
```ts
5757
{
58-
utopia: {
59-
minScreen: "320px",
60-
minSize: 18,
61-
minScale: 1.2,
62-
maxScreen: "1240px",
63-
maxSize: 20,
64-
maxScale: 1.25,
65-
positiveSteps: 5,
66-
negativeSteps: 2,
67-
spacingSteps: {
68-
negative: [0.75, 0.5, 0.25],
69-
positive: [1.5, 2, 3, 4, 6],
70-
},
71-
spacingPairs: ["s-l"],
72-
},
58+
utopia: {
59+
minScreen: "320px",
60+
minSize: 18,
61+
minScale: 1.2,
62+
maxScreen: "1240px",
63+
maxSize: 20,
64+
maxScale: 1.25,
65+
positiveSteps: 5,
66+
negativeSteps: 2,
67+
spacingSteps: {
68+
negative: [0.75, 0.5, 0.25],
69+
positive: [1.5, 2, 3, 4, 6],
70+
},
71+
spacingPairs: ["s-l"],
72+
},
7373
}
7474
```
7575

packages/tailwindcss-utopia/build.ts

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,24 @@ import type { BuildConfig } from "bun";
22
import dts from "bun-plugin-dts";
33

44
const defaultBuildConfig: BuildConfig = {
5-
entrypoints: ["./src/index.ts"],
6-
outdir: "./dist",
5+
entrypoints: ["./src/index.ts"],
6+
outdir: "./dist",
77
};
88

99
await Promise.all([
10-
Bun.build({
11-
...defaultBuildConfig,
12-
plugins: [dts()],
13-
format: "esm",
14-
target: "node",
15-
naming: "[dir]/[name].js",
16-
external: ["tailwindcss"],
17-
}),
18-
Bun.build({
19-
...defaultBuildConfig,
20-
format: "cjs",
21-
target: "node",
22-
naming: "[dir]/[name].cjs",
23-
external: ["tailwindcss"],
24-
}),
10+
Bun.build({
11+
...defaultBuildConfig,
12+
plugins: [dts()],
13+
format: "esm",
14+
target: "node",
15+
naming: "[dir]/[name].js",
16+
external: ["tailwindcss"],
17+
}),
18+
Bun.build({
19+
...defaultBuildConfig,
20+
format: "cjs",
21+
target: "node",
22+
naming: "[dir]/[name].cjs",
23+
external: ["tailwindcss"],
24+
}),
2525
]);

0 commit comments

Comments
 (0)