npm.io
2.5.1 • Published 5 years ago

@adobe/aio-app-scripts

Licence
Apache-2.0
Version
2.5.1
Deps
22
Size
272 kB
Vulns
1
Weekly
0
Stars
7

Version Downloads/week Build Status License Codecov Coverage

AIO App Scripts

Utility tooling scripts to build, deploy and run Adobe I/O Apps

Include as a library in your nodejs project

npm i --save @adobe/aio-app-scripts
const appScripts = require('@adobe/aio-app-scripts')({
  listeners: {
    onStart: taskName => console.error(`${taskName} ...`),
    onEnd: (taskName, res) => { console.error(`${taskName} done!`); if (res) console.log(res) },
    onWarning: warning => console.error(warning),
    onProgress: item => console.error(`  > ${item}`)
  }
})

appScripts.buildUI()
  .then(appScripts.buildActions)
  .then(appScripts.deployActions)
  .then(appScripts.deployUI)
  .catch(e => { console.error(e); process.exit(1) })

Explore

Contributing

Contributions are welcomed! Read the Contributing Guide for more information.

Licensing

This project is licensed under the Apache V2 License. See LICENSE for more information.

Keywords