1.0.3 • Published 1 year ago

actions-exec-wrapper v1.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

actions-exec-wrapper

A wrapper around the @actions/exec module which promisifies the console output of a command


Installation

# using npm
npm install actions-exec-wrapper

# using yarn
yarn add actions-exec-wrapper

Usage

# using require
const exec = require("actions-exec-wrapper").default;

# using import
import exec from "actions-exec-wrapper";

Example

exec('npm --version').then(result => {
  console.log(result);
}).catch(error => {
  console.log(error);
})
1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago

1.0.3

1 year ago

0.0.5

4 years ago

0.0.4

4 years ago

0.0.3

4 years ago

0.0.2

4 years ago

0.0.1

4 years ago