Skip to content

Commit bd38976

Browse files
authored
chore: fix turbo.json fixtures for turbo@2 (#569)
We pull in `turbo@latest` with no lockfile for our integration test fixture sites, so this suddenly started failing when turbo@2 was released.
1 parent 872994e commit bd38976

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

tests/fixtures/turborepo-npm/packages/ui/turbo.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://turbo.build/schema.json",
33
"extends": ["//"],
4-
"pipeline": {
4+
"tasks": {
55
"build": {
66
"outputs": ["dist/**"]
77
}

tests/fixtures/turborepo-npm/turbo.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://turbo.build/schema.json",
33
"globalDependencies": ["**/.env.*local"],
4-
"pipeline": {
4+
"tasks": {
55
"build": {
66
"dependsOn": ["^build"],
77
"outputs": [".next/**", "!.next/cache/**"]

tests/fixtures/turborepo/packages/ui/turbo.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://turbo.build/schema.json",
33
"extends": ["//"],
4-
"pipeline": {
4+
"tasks": {
55
"build": {
66
"outputs": ["dist/**"]
77
}

tests/fixtures/turborepo/turbo.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://turbo.build/schema.json",
33
"globalDependencies": ["**/.env.*local"],
4-
"pipeline": {
4+
"tasks": {
55
"build": {
66
"dependsOn": ["^build"],
77
"outputs": [".next/**", "!.next/cache/**"]

0 commit comments

Comments
 (0)