diff --git a/turborepo-tests/example-with-berry/package.json b/turborepo-tests/example-with-berry/package.json deleted file mode 100644 index e2ec59eeffbc7..0000000000000 --- a/turborepo-tests/example-with-berry/package.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "name": "@turborepo-examples-tests/with-berry", - "scripts": { - "test": "bash ./node_modules/turborepo-tests-helpers/setup_example_test.sh with-berry yarn" - }, - "dependencies": { - "turborepo-tests-helpers": "workspace:*", - "turborepo-examples": "workspace:*" - } -} diff --git a/turborepo-tests/example-with-berry/turbo.json b/turborepo-tests/example-with-berry/turbo.json deleted file mode 100644 index f6527d7b7dfca..0000000000000 --- a/turborepo-tests/example-with-berry/turbo.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "extends": ["//"], - "tasks": { - "test": { - "outputs": [] - } - } -} diff --git a/turborepo-tests/example-with-changesets/package.json b/turborepo-tests/example-with-changesets/package.json deleted file mode 100644 index 1c2f63ec4931e..0000000000000 --- a/turborepo-tests/example-with-changesets/package.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "name": "@turborepo-examples-tests/with-changesets", - "scripts": { - "test": "bash ./node_modules/turborepo-tests-helpers/setup_example_test.sh with-changesets pnpm" - }, - "dependencies": { - "turborepo-tests-helpers": "workspace:*", - "turborepo-examples": "workspace:*" - } -} diff --git a/turborepo-tests/example-with-changesets/turbo.json b/turborepo-tests/example-with-changesets/turbo.json deleted file mode 100644 index f6527d7b7dfca..0000000000000 --- a/turborepo-tests/example-with-changesets/turbo.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "extends": ["//"], - "tasks": { - "test": { - "outputs": [] - } - } -} diff --git a/turborepo-tests/example-with-react-native-web/package.json b/turborepo-tests/example-with-react-native-web/package.json deleted file mode 100644 index fb46143e5814d..0000000000000 --- a/turborepo-tests/example-with-react-native-web/package.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "name": "@turborepo-examples-tests/with-react-native-web", - "scripts": { - "test": "bash ./node_modules/turborepo-tests-helpers/setup_example_test.sh with-react-native-web yarn" - }, - "dependencies": { - "turborepo-tests-helpers": "workspace:*", - "turborepo-examples": "workspace:*" - } -} diff --git a/turborepo-tests/example-with-react-native-web/turbo.json b/turborepo-tests/example-with-react-native-web/turbo.json deleted file mode 100644 index f6527d7b7dfca..0000000000000 --- a/turborepo-tests/example-with-react-native-web/turbo.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "extends": ["//"], - "tasks": { - "test": { - "outputs": [] - } - } -} diff --git a/turborepo-tests/example-with-rollup/package.json b/turborepo-tests/example-with-rollup/package.json deleted file mode 100644 index b1f6ab366526c..0000000000000 --- a/turborepo-tests/example-with-rollup/package.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "name": "@turborepo-examples-tests/with-rollup", - "scripts": { - "test": "bash ./node_modules/turborepo-tests-helpers/setup_example_test.sh with-rollup pnpm" - }, - "dependencies": { - "turborepo-tests-helpers": "workspace:*", - "turborepo-examples": "workspace:*" - } -} diff --git a/turborepo-tests/example-with-rollup/turbo.json b/turborepo-tests/example-with-rollup/turbo.json deleted file mode 100644 index f6527d7b7dfca..0000000000000 --- a/turborepo-tests/example-with-rollup/turbo.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "extends": ["//"], - "tasks": { - "test": { - "outputs": [] - } - } -} diff --git a/turborepo-tests/example-with-vite/package.json b/turborepo-tests/example-with-vite/package.json deleted file mode 100644 index bc22f2cda27bf..0000000000000 --- a/turborepo-tests/example-with-vite/package.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "name": "@turborepo-examples-tests/with-vite", - "scripts": { - "test": "bash ./node_modules/turborepo-tests-helpers/setup_example_test.sh with-vite pnpm" - }, - "dependencies": { - "turborepo-tests-helpers": "workspace:*", - "turborepo-examples": "workspace:*" - } -} diff --git a/turborepo-tests/example-with-vite/turbo.json b/turborepo-tests/example-with-vite/turbo.json deleted file mode 100644 index f6527d7b7dfca..0000000000000 --- a/turborepo-tests/example-with-vite/turbo.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "extends": ["//"], - "tasks": { - "test": { - "outputs": [] - } - } -} diff --git a/turborepo-tests/helpers/setup_example_test.sh b/turborepo-tests/helpers/setup_example_test.sh index 43221445e325f..ce9d52752cfd0 100644 --- a/turborepo-tests/helpers/setup_example_test.sh +++ b/turborepo-tests/helpers/setup_example_test.sh @@ -21,8 +21,6 @@ fi echo "node --version: $(node --version)" -echo "$PWD" - # Use the right command for each package manager if [ "$package_manager" == "npm" ]; then package_manager_command="node ../../../packages/turbo-workspaces/dist/cli.js convert . npm --ignore-unchanged-package-manager || true && npm install"