Skip to content

Commit 9485946

Browse files
ci: apply automated fixes
1 parent 286156b commit 9485946

30 files changed

Lines changed: 187 additions & 157 deletions

examples/marko/dynamic/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616
"typescript": "5.4.5",
1717
"vite": "^5.4.19"
1818
}
19-
}
19+
}

examples/marko/dynamic/src/data.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
export const items = Array.from({ length: 1000 }, (_, i) => ({
22
id: i,
3-
text: "Item " + i + "" + "lorem ipsum ".repeat(1 + (i % 5)),
3+
text: 'Item ' + i + '' + 'lorem ipsum '.repeat(1 + (i % 5)),
44
}))

examples/marko/dynamic/vite.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ export default defineConfig({
55
// Cast to any: @marko/run/vite types are built against Vite 6 but this
66
// workspace uses Vite 5. The plugin works correctly at runtime.
77
plugins: [marko() as any],
8-
})
8+
})

examples/marko/fixed/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616
"typescript": "5.4.5",
1717
"vite": "^5.4.19"
1818
}
19-
}
19+
}

examples/marko/fixed/vite.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ export default defineConfig({
55
// Cast to any: @marko/run/vite types are built against Vite 6 but this
66
// workspace uses Vite 5. The plugin works correctly at runtime.
77
plugins: [marko() as any],
8-
})
8+
})

examples/marko/grid/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616
"typescript": "5.4.5",
1717
"vite": "^5.4.19"
1818
}
19-
}
19+
}

examples/marko/grid/src/data.ts

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
export const ROW_COUNT = 1000
22
export const COL_COUNT = 1000
3-
export const rowSizes = Array.from({ length: ROW_COUNT }, (_, i) => 30 + ((i * 7 + 13) % 20))
4-
export const colSizes = Array.from({ length: COL_COUNT }, (_, i) => 80 + ((i * 11 + 17) % 80))
3+
export const rowSizes = Array.from(
4+
{ length: ROW_COUNT },
5+
(_, i) => 30 + ((i * 7 + 13) % 20),
6+
)
7+
export const colSizes = Array.from(
8+
{ length: COL_COUNT },
9+
(_, i) => 80 + ((i * 11 + 17) % 80),
10+
)

examples/marko/grid/vite.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ export default defineConfig({
55
// Cast to any: @marko/run/vite types are built against Vite 6 but this
66
// workspace uses Vite 5. The plugin works correctly at runtime.
77
plugins: [marko() as any],
8-
})
8+
})

examples/marko/infinite-scroll/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616
"typescript": "5.4.5",
1717
"vite": "^5.4.19"
1818
}
19-
}
19+
}

examples/marko/infinite-scroll/vite.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ export default defineConfig({
55
// Cast to any: @marko/run/vite types are built against Vite 6 but this
66
// workspace uses Vite 5. The plugin works correctly at runtime.
77
plugins: [marko() as any],
8-
})
8+
})

0 commit comments

Comments
 (0)