diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 000000000..5e88dc962 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,4 @@ +# Ensure consistent line endings for test input/output files +# Use LF for all test files to ensure cross-platform consistency +packages/swc-plugin-workflow/transform/tests/**/*.js text eol=lf +packages/swc-plugin-workflow/transform/tests/**/*.stderr text eol=lf diff --git a/turbo.json b/turbo.json index 57068d19b..7f1ab8bcd 100644 --- a/turbo.json +++ b/turbo.json @@ -7,13 +7,16 @@ "outputs": ["dist/**", "build", ".svelte-kit", ".vercel/output"] }, "dev": { - "dependsOn": ["^build"] + "dependsOn": ["^build"], + "cache": false }, "typecheck": { - "dependsOn": ["^build"] + "dependsOn": ["^build"], + "cache": false }, "test": { - "dependsOn": ["^build"] + "dependsOn": ["^build"], + "cache": false }, "clean": { "cache": false