build: temporarily disable dynamic queries migration (#32837)
Disables the dynamic queries migration until we can land the relevant framework changes (#32686 and #32720). PR Close #32837
This commit is contained in:
parent
948714c17c
commit
39bc6f7bea
|
@ -34,11 +34,6 @@
|
|||
"version": "9-beta",
|
||||
"description": "Adds an Angular decorator to undecorated classes that have decorated fields",
|
||||
"factory": "./migrations/undecorated-classes-with-decorated-fields/index"
|
||||
},
|
||||
"migration-v9-dynamic-queries": {
|
||||
"version": "9-beta",
|
||||
"description": "Removes the `static` flag from dynamic queries.",
|
||||
"factory": "./migrations/dynamic-queries/index"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -5,6 +5,7 @@ ts_library(
|
|||
testonly = True,
|
||||
srcs = glob(["**/*.ts"]),
|
||||
data = [
|
||||
"test-migrations.json",
|
||||
"//packages/core/schematics:migrations.json",
|
||||
],
|
||||
deps = [
|
||||
|
|
|
@ -20,7 +20,7 @@ describe('dynamic queries migration', () => {
|
|||
let previousWorkingDir: string;
|
||||
|
||||
beforeEach(() => {
|
||||
runner = new SchematicTestRunner('test', require.resolve('../migrations.json'));
|
||||
runner = new SchematicTestRunner('test', require.resolve('./test-migrations.json'));
|
||||
host = new TempScopedNodeJsSyncHost();
|
||||
tree = new UnitTestTree(new HostTree(host));
|
||||
|
||||
|
|
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"schematics": {
|
||||
"migration-v9-dynamic-queries": {
|
||||
"version": "9-beta",
|
||||
"description": "Removes the `static` flag from dynamic queries.",
|
||||
"factory": "../migrations/dynamic-queries/index"
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue