(value)
| 3158 | return {...sourceIn, source: result}; |
| 3159 | } |
| 3160 | resolveVariable(value) { |
| 3161 | value = value.replace(/\$\(([^\)]+)\)/g, (offset, value) => { |
| 3162 | if (value in this.environment) |
| 3163 | return this.environment[value]; |
| 3164 | return this.getenv(value); |
| 3165 | }); |
| 3166 | return this.resolveSlash(value); |
| 3167 | } |
| 3168 | run() { |
| 3169 | // merge manifests |
| 3170 | var path = this.manifestPath; |
no test coverage detected