This package has been deprecated

Author message:

This package has been moved under the @sliit-foss namespace and is now available at @sliit-foss/actions-exec-wrapper. As such, this package is deprecated and no longer maintained.

actions-exec-wrapper

1.0.3 • Public • Published

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);
})

Dependents (0)

Package Sidebar

Install

npm i actions-exec-wrapper

Weekly Downloads

6

Version

1.0.3

License

MIT

Unpacked Size

4.39 kB

Total Files

4

Last publish

Collaborators

  • sliit.foss