Skip to content

Commit a88d8fc

Browse files
authored
chore: update nx, run migrations (#552)
Signed-off-by: Todd Baert <[email protected]>
1 parent f299003 commit a88d8fc

File tree

13 files changed

+64
-202
lines changed

13 files changed

+64
-202
lines changed

libs/hooks/open-telemetry/project.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@
3333
"input": "./libs/hooks/open-telemetry",
3434
"output": "./"
3535
}
36-
]
36+
],
37+
"updateBuildableProjectDepsInPackageJson": true
3738
}
3839
},
3940
"build": {
@@ -43,7 +44,8 @@
4344
"outputPath": "dist/libs/hooks/open-telemetry",
4445
"main": "libs/hooks/open-telemetry/src/index.ts",
4546
"tsConfig": "libs/hooks/open-telemetry/tsconfig.lib.json",
46-
"assets": ["libs/hooks/open-telemetry/*.md"]
47+
"assets": ["libs/hooks/open-telemetry/*.md"],
48+
"updateBuildableProjectDepsInPackageJson": true
4749
}
4850
},
4951
"publish": {

libs/providers/config-cat/project.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,8 @@
6767
"input": "./libs/providers/config-cat",
6868
"output": "./"
6969
}
70-
]
70+
],
71+
"updateBuildableProjectDepsInPackageJson": true
7172
}
7273
}
7374
},

libs/providers/env-var/project.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,8 @@
6767
"input": "./libs/providers/env-var",
6868
"output": "./"
6969
}
70-
]
70+
],
71+
"updateBuildableProjectDepsInPackageJson": true
7172
}
7273
}
7374
},

libs/providers/flagd-web/project.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,8 @@
114114
"input": "./libs/providers/flagd-web",
115115
"output": "./"
116116
}
117-
]
117+
],
118+
"updateBuildableProjectDepsInPackageJson": true
118119
},
119120
"dependsOn": [
120121
{

libs/providers/flagd/project.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,8 @@
114114
"input": "./libs/providers/flagd",
115115
"output": "./"
116116
}
117-
]
117+
],
118+
"updateBuildableProjectDepsInPackageJson": true
118119
},
119120
"dependsOn": [
120121
{

libs/providers/go-feature-flag-web/project.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,8 @@
6868
"input": "./libs/providers/go-feature-flag-web",
6969
"output": "./"
7070
}
71-
]
71+
],
72+
"updateBuildableProjectDepsInPackageJson": true
7273
}
7374
}
7475
},

libs/providers/go-feature-flag/project.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,8 @@
6161
"input": "./libs/providers/go-feature-flag",
6262
"output": "./"
6363
}
64-
]
64+
],
65+
"updateBuildableProjectDepsInPackageJson": true
6566
}
6667
}
6768
},

libs/providers/in-memory/project.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,8 @@
6767
"input": "./libs/providers/in-memory",
6868
"output": "./"
6969
}
70-
]
70+
],
71+
"updateBuildableProjectDepsInPackageJson": true
7172
}
7273
}
7374
},

libs/providers/launchdarkly-client/project.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,8 @@
6767
"input": "./libs/providers/launchdarkly-client",
6868
"output": "./"
6969
}
70-
]
70+
],
71+
"updateBuildableProjectDepsInPackageJson": true
7172
}
7273
}
7374
},

migrations.json

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,19 @@
22
"migrations": [
33
{
44
"cli": "nx",
5-
"version": "16.5.0-beta.2",
6-
"description": "Add test-setup.ts to ignored files in production input",
7-
"implementation": "./src/migrations/update-16-5-0/add-test-setup-to-inputs-ignore",
8-
"package": "@nx/jest",
9-
"name": "add-test-setup-to-inputs-ignore"
5+
"version": "16.6.0-beta.0",
6+
"description": "Explicitly set 'updateBuildableProjectDepsInPackageJson' to 'true' in targets that rely on that value as the default.",
7+
"factory": "./src/migrations/update-16-6-0/explicitly-set-projects-to-update-buildable-deps",
8+
"package": "@nx/js",
9+
"name": "explicitly-set-projects-to-update-buildable-deps"
10+
},
11+
{
12+
"cli": "nx",
13+
"version": "16.6.0-beta.0",
14+
"description": "Explicitly set 'updateBuildableProjectDepsInPackageJson' to 'true' in targets that rely on that value as the default.",
15+
"factory": "./src/migrations/update-16-6-0/explicitly-set-projects-to-update-buildable-deps",
16+
"package": "@nx/rollup",
17+
"name": "explicitly-set-projects-to-update-buildable-deps"
1018
}
1119
]
1220
}

0 commit comments

Comments
 (0)