Browse Source

Merge pull request #63 from zeit/move-from-now-engines-to-now.engines

Use `"now"` nampespace for `"engines"`
master
Guillermo Rauch 9 years ago
parent
commit
de521f37b7
  1. 3
      lib/index.js

3
lib/index.js

@ -71,7 +71,8 @@ export default class Now extends EventEmitter {
this._files = hashes;
const engines = pkg['now-engines'];
const nowProperties = pkg.now || {};
const engines = nowProperties.engines;
const deployment = await retry(async (bail) => {
if (this._debug) console.time('> [debug] /now/create');

Loading…
Cancel
Save