@prisma-next/cli 0.1.0-pr.56.3 → 0.1.0-pr.56.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +13 -17
- package/dist/cli.js.map +1 -1
- package/dist/commands/db-schema-verify.js.map +1 -1
- package/dist/commands/db-sign.js +13 -17
- package/dist/commands/db-sign.js.map +1 -1
- package/dist/commands/db-verify.js.map +1 -1
- package/package.json +10 -10
package/dist/cli.js
CHANGED
|
@@ -1746,15 +1746,13 @@ function createDbSignCommand() {
|
|
|
1746
1746
|
let schemaVerifyResult;
|
|
1747
1747
|
try {
|
|
1748
1748
|
schemaVerifyResult = await withSpinner(
|
|
1749
|
-
|
|
1750
|
-
|
|
1751
|
-
|
|
1752
|
-
|
|
1753
|
-
|
|
1754
|
-
|
|
1755
|
-
|
|
1756
|
-
});
|
|
1757
|
-
},
|
|
1749
|
+
() => familyInstance.schemaVerify({
|
|
1750
|
+
driver,
|
|
1751
|
+
contractIR,
|
|
1752
|
+
strict: false,
|
|
1753
|
+
contractPath: contractPathAbsolute,
|
|
1754
|
+
configPath
|
|
1755
|
+
}),
|
|
1758
1756
|
{
|
|
1759
1757
|
message: "Verifying database satisfies contract",
|
|
1760
1758
|
flags
|
|
@@ -1771,14 +1769,12 @@ function createDbSignCommand() {
|
|
|
1771
1769
|
let signResult;
|
|
1772
1770
|
try {
|
|
1773
1771
|
signResult = await withSpinner(
|
|
1774
|
-
|
|
1775
|
-
|
|
1776
|
-
|
|
1777
|
-
|
|
1778
|
-
|
|
1779
|
-
|
|
1780
|
-
});
|
|
1781
|
-
},
|
|
1772
|
+
() => familyInstance.sign({
|
|
1773
|
+
driver,
|
|
1774
|
+
contractIR,
|
|
1775
|
+
contractPath: contractPathAbsolute,
|
|
1776
|
+
configPath
|
|
1777
|
+
}),
|
|
1782
1778
|
{
|
|
1783
1779
|
message: "Signing database...",
|
|
1784
1780
|
flags
|