Comparing version 0.1.5 to 0.1.6
@@ -6,2 +6,3 @@ 'use strict'; | ||
}); | ||
exports.runTasks = exports.runTask = exports.createTask = undefined; | ||
exports.default = Arnie; | ||
@@ -19,2 +20,5 @@ | ||
exports.createTask = _task.createTask; | ||
exports.runTask = _task.runTask; | ||
exports.runTasks = _task.runTasks; | ||
function Arnie() { | ||
@@ -21,0 +25,0 @@ let config = arguments.length <= 0 || arguments[0] === undefined ? {} : arguments[0]; |
{ | ||
"name": "arnie", | ||
"version": "0.1.5", | ||
"version": "0.1.6", | ||
"description": "Action hero for backends", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -5,2 +5,4 @@ # KOA Arnie | ||
[![NPM version][npm-image]][npm-url] | ||
Arnie wants action! Actions are structured in tasks and you compose them like legos to make things happen. Arnie is meant to be used with Koa2, but the core will work without it. The API is currently likely to change, so be adventures when using Arnie :) | ||
@@ -349,1 +351,4 @@ | ||
``` | ||
[npm-image]: https://img.shields.io/npm/v/arnie.svg?style=flat | ||
[npm-url]: https://npmjs.org/package/arnie |
import middleware from './core/middleware' | ||
import {createTask, runTask, runTasks} from './core/task' | ||
export { | ||
createTask, | ||
runTask, | ||
runTasks | ||
} | ||
export default function Arnie (config = {}) { | ||
@@ -5,0 +11,0 @@ const myTasks = [] |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
61420
1903
353