1.0.3 • Published 5 years ago

edge-extension-deploy v1.0.3

Weekly downloads
4
License
MIT
Repository
github
Last release
5 years ago

edge-extension-deploy Build Status Coverage Status

Deploy Edge extensions to the Windows Store.

Installation

npm install --save-dev edge-extension-deploy

Usage

var fs = require('fs');
var deploy = require('edge-extension-deploy');

deploy({
  // Azure AD credentials
  tenantId: 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx',
  clientId: 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx',
  clientSecret: 'bXlDbGllbnRTZWNyZXQ=',

  // Windows Store ID of the extension (from the Dev Center dashboard)
  appId: '123456789ABC',

  // OPTIONAL: if specified, will push a flight submission instead of the main submission
  flightId: 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx',

  // ReadStream of an (unsigned) appx
  appx: fs.createReadStream('path/to/extension.appx')
}).then(function() {
  // success!
}, function(err) {
  // failure :(
  // errors are sanitized, so your tokens will not be leaked
});
1.0.3

5 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

7 years ago

0.1.0

7 years ago