How to use the @truffle/migrate.run function in @truffle/migrate

To help you get started, we’ve selected a few @truffle/migrate examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github trufflesuite / truffle / packages / core / lib / testing / testrunner.js View on Github external
TestRunner.prototype.deploy = function(callback) {
  Migrate.run(
    this.config.with({
      reset: true,
      quiet: true
    }),
    callback
  );
};
github trufflesuite / truffle / packages / core / lib / commands / migrate.js View on Github external
async function runMigrations(config) {
      Migrate.launchReporter(config);

      if (options.f) {
        await Migrate.runFrom(options.f, config);
      } else {
        const needsMigrating = await Migrate.needsMigrating(config);

        if (needsMigrating) {
          await Migrate.run(config);
        } else {
          config.logger.log("Network up to date.");
        }
      }
    }
  }

@truffle/migrate

On-chain migrations management

MIT
Latest version published 8 months ago

Package Health Score

50 / 100
Full package analysis