apache / openwhisk-devtools

Development tools for building and deploying Apache OpenWhisk
https://openwhisk.apache.org/
Apache License 2.0
179 stars 126 forks source link

Package action source along with its dependencies #266

Closed pritidesai closed 5 years ago

pritidesai commented 5 years ago

Automation to install NPM packages and create a .zip archive:

Install module dependencies using NPM:

npm install

Create a .zip archive containing all files (including all dependencies):

zip -r action.zip *

Decode .zip archive:

base64 -d action.zip