diff --git a/package.json b/package.json index ccff15df2..b021e00b1 100644 --- a/package.json +++ b/package.json @@ -13,8 +13,8 @@ ], "scripts": { "build": "turbo run build build:css --filter='./packages/@uppy/*' --filter='./packages/uppy'", - "build:clean": "cp .gitignore .gitignore.bak && printf '!node_modules\n!**/node_modules/**/*\n' >> .gitignore; git clean -Xfd packages e2e .parcel-cache coverage; mv .gitignore.bak .gitignore", - "build:watch": "turbo watch build build:css --filter='./packages/@uppy/*'", + "build:clean": "cp .gitignore .gitignore.bak && printf '!node_modules\n!**/node_modules/**/*\n' >> .gitignore; git clean -Xfd packages e2e .parcel-cache coverage .turbo; mv .gitignore.bak .gitignore", + "build:watch": "yarn build && turbo watch build build:css --filter='./packages/@uppy/*' --filter='./packages/uppy'", "migrate:components": "yarn workspace @uppy/components migrate", "check": "yarn exec biome check --write", "check:ci": "yarn exec biome ci", diff --git a/turbo.json b/turbo.json index d4b27cff7..8b4eab539 100644 --- a/turbo.json +++ b/turbo.json @@ -23,11 +23,6 @@ ], "outputs": ["lib/**", "dist/**"] }, - "build:watch": { - "outputLogs": "new-only", - "persistent": true, - "cache": false - }, "build:css": { "outputLogs": "new-only", "inputs": ["src/**/*.scss"], @@ -41,11 +36,6 @@ "test": { "outputLogs": "errors-only", "dependsOn": ["^test"] - }, - "test:watch": { - "outputLogs": "new-only", - "persistent": true, - "cache": false } } }