Skip to content

Commit 2453405

Browse files
committed
more fixes to ci
1 parent 5e6b440 commit 2453405

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ out
66
*.min.css
77
pnpm-lock.yaml
88
packages/types/src/generated
9+
**/vendor

crates/shift-core/src/binary.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ use skrifa::{
1212
FontRef, MetadataProvider,
1313
};
1414

15-
pub fn load_font(font_bytes: &[u8]) -> Result<FontRef, String> {
15+
pub fn load_font(font_bytes: &[u8]) -> Result<FontRef<'_>, String> {
1616
FontRef::new(font_bytes).map_err(|e| format!("Failed to load font: {e}"))
1717
}
1818

@@ -119,7 +119,7 @@ fn detect_smooth_points(contours: &mut [Contour]) {
119119
}
120120
}
121121

122-
fn font_from_skrifa(font: &FontRef) -> Font {
122+
fn font_from_skrifa(font: &FontRef<'_>) -> Font {
123123
let outlines = font.outline_glyphs();
124124
let char_map = font.charmap();
125125

turbo.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@
3838
"outputs": []
3939
},
4040
"test": {
41-
"dependsOn": ["^build"],
4241
"outputs": [],
4342
"inputs": ["src/**", "*.config.ts"]
4443
}

0 commit comments

Comments
 (0)