How to use the aurelia-cli.reportWebpackReadiness function in aurelia-cli

To help you get started, we’ve selected a few aurelia-cli 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 zeit / now / test / dev / fixtures / 03-aurelia / aurelia_project / tasks / run.js View on Github external
server.listen(opts.port, opts.host, function(err) {
    if (err) throw err;

    reportWebpackReadiness(opts);
    done();
  });
}
github Vheissu / aureliapress / app / aurelia_project / tasks / run.ts View on Github external
server.listen(opts.port, opts.host, function(err) {
    if (err) throw err;

    reportWebpackReadiness(opts);
    done();
  });
}
github jbockle / aurelia-json-schema-form / aurelia_project / tasks / run.ts View on Github external
server.listen(opts.port, opts.host, function(err) {
    if (err) { throw err; }

    reportWebpackReadiness(opts);
    done();
  });
}
github aurelia / cli / lib / resources / tasks / run-webpack.js View on Github external
server.listen(opts.port, opts.host, function(err) {
    if (err) throw err;

    reportWebpackReadiness(opts);
    done();
  });
}
github ghiscoding / aurelia-slickgrid / aurelia_project / tasks / run.ts View on Github external
buildWebpack(() => {
        reportWebpackReadiness(opts);
        done();
      });
    } else {
github aurelia / cli / lib / resources / tasks / run-webpack.ts View on Github external
server.listen(opts.port, opts.host, function(err) {
    if (err) throw err;

    reportWebpackReadiness(opts);
    done();
  });
}