esoui-publish
A simple node utility that will publish addons to ESOUI.
  • I do not recommend installing from esoui. This only contains the source code and would need to be built. I recommend installing this utility from NPMJS.
  • You can find the latest source code at Azure DevOps

Setup
Install
  • Generate an ESOUI access token. They can be generated here. Tokens are like passwords. Make sure to keep them secure.
  • Code:
    npm install -g esoui-publish
Prepare
  • Recommend setting the `ESOUI_TOKEN` environment variable so you do not have to store it in code or use it on the command line.
  • The addon description and changelog can be read from files. If no files are provided the main add on page will not be affected.
  • Any missing arguments will result in no change to that attribute.
  • The `testDeploy` argument will test your upload against https://api.esoui.com/addons/updatetest which will verify your upload will be accepted.

Run
Command Line
Code:
esoui-publish --id=2272 --description='esoui-description.txt' --changelog='esoui-changelog.txt' --compatibility='5.2.5' --updateFile=esoui-publish-1514.zip --testDeploy=true
JavaScript
Code:
const EsouiPublish = require('esoui-publish').EsouiPublish;
const params = {
  id: 2272,
  version: '1.0.0',
  description: 'esoui-description.txt',
  changelog: 'esoui-changelog.txt',
  compatibility: '5.2.5',
  updateFile: 'esoui-publish.zip',
  testDeploy: true // Remove or set to false to publish for real.
};

new EsouiPublish(process.env.ESOUI_TOKEN, params).createUpdatePackageAndUpdate()
  .then(response => console.log(JSON.stringify(response, null, 2)))
  .catch(error => console.log(error));

返回
顶部