Also, can not work for a directory structure like this:

```
ls -1 ./
actions/
manifest.yaml

ls -1 actions/
common/
action1.js
action2.js
action3.js
action4.js
package.json

ls -1 actions/common
utility.js
```

manifest.yaml:

```
packages:
    myPackage:
        actions:
             action1:
                 function: actions/
                 runtime: nodejs:6
                 exclude:
                     - actions/**
                 include:
                     - actions/common/utility.js
                     - actions/action1.js
                     - actions/package.json
             action2:
                 function: actions/
                 runtime: nodejs:6
                 exclude:
                     - actions/**
                 include:
                     - actions/common/utility.js
                     - actions/action2.js
                     - actions/package.json
...
```


There has to be separate `package.json` for each action.


[ Full content available at: 
https://github.com/apache/incubator-openwhisk-wskdeploy/issues/969 ]
This message was relayed via gitbox.apache.org for [email protected]

Reply via email to