@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 CHANGED
@@ -1746,15 +1746,13 @@ function createDbSignCommand() {
1746
1746
  let schemaVerifyResult;
1747
1747
  try {
1748
1748
  schemaVerifyResult = await withSpinner(
1749
- async () => {
1750
- return await familyInstance.schemaVerify({
1751
- driver,
1752
- contractIR,
1753
- strict: false,
1754
- contractPath: contractPathAbsolute,
1755
- configPath
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
- async () => {
1775
- return await familyInstance.sign({
1776
- driver,
1777
- contractIR,
1778
- contractPath: contractPathAbsolute,
1779
- configPath
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