@adobe/aio-app-scripts
v2.5.1
Published
Utility tooling scripts to build, deploy and run an Adobe I/O App
Downloads
790
Readme
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
goto
API
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.