actionsflow-interface
Advanced tools
Comparing version 0.0.2 to 0.0.3
@@ -6,7 +6,12 @@ # Change Log | ||
## [0.0.3](https://github.com/actionsflow/actionsflow/compare/actionsflow-interface@0.0.2...actionsflow-interface@0.0.3) (2020-08-28) | ||
### Features | ||
- yarn v2 ([6418eef](https://github.com/actionsflow/actionsflow/commit/6418eef07f9cfaa21c17555409fb621de7f5cd2c)) | ||
## 0.0.2 (2020-08-19) | ||
### Features | ||
* 🎸 add actionsflow-interface ([f7ba6a9](https://github.com/actionsflow/actionsflow/commit/f7ba6a91c8083f3379c70735975020386d1dc86a)) | ||
- 🎸 add actionsflow-interface ([f7ba6a9](https://github.com/actionsflow/actionsflow/commit/f7ba6a91c8083f3379c70735975020386d1dc86a)) |
@@ -11,2 +11,4 @@ export declare type AnyObject = Record<string, unknown>; | ||
set: (key: string, value: unknown) => Promise<unknown>; | ||
del: (key: string) => Promise<void>; | ||
reset: () => Promise<void>; | ||
}; | ||
@@ -45,2 +47,3 @@ } | ||
items: AnyObject[]; | ||
helpers?: IHelpers; | ||
} | ||
@@ -51,3 +54,3 @@ export interface IWorkflow { | ||
data: AnyObject; | ||
triggers: ITrigger[]; | ||
rawTriggers: ITrigger[]; | ||
} |
{ | ||
"version": "0.0.2", | ||
"version": "0.0.3", | ||
"license": "MIT", | ||
@@ -17,10 +17,8 @@ "main": "dist/src/index.js", | ||
"test": "jest --passWithNoTests", | ||
"lint": "eslint --fix ./src && prettier --write --loglevel warn ./src", | ||
"clean": "rimraf ./dist", | ||
"prepare": "npm run build", | ||
"hooks:pre-commit": "lint-staged" | ||
"prepare": "npm run build" | ||
}, | ||
"name": "actionsflow-interface", | ||
"author": "Owen Young", | ||
"gitHead": "3af532281d09c75fc0eba65714af8836a8c74b41" | ||
"gitHead": "e68bfe8b08dcdbb28e63d5ebc587552897308c71" | ||
} |
@@ -1,27 +0,3 @@ | ||
# TSDX Bootstrap | ||
# Actionsflow Interface | ||
This project was bootstrapped with [TSDX](https://github.com/jaredpalmer/tsdx). | ||
## Local Development | ||
Below is a list of commands you will probably find useful. | ||
### `npm start` or `yarn start` | ||
Runs the project in development/watch mode. Your project will be rebuilt upon changes. TSDX has a special logger for you convenience. Error messages are pretty printed and formatted for compatibility VS Code's Problems tab. | ||
<img src="https://user-images.githubusercontent.com/4060187/52168303-574d3a00-26f6-11e9-9f3b-71dbec9ebfcb.gif" width="600" /> | ||
Your library will be rebuilt if you make edits. | ||
### `npm run build` or `yarn build` | ||
Bundles the package to the `dist` folder. | ||
The package is optimized and bundled with Rollup into multiple formats (CommonJS, UMD, and ES Module). | ||
<img src="https://user-images.githubusercontent.com/4060187/52168322-a98e5b00-26f6-11e9-8cf6-222d716b75ef.gif" width="600" /> | ||
### `npm test` or `yarn test` | ||
Runs the test watcher (Jest) in an interactive mode. | ||
By default, runs tests related to files changed since the last commit. | ||
Common interfaces for [Actionsflow](https://github.com/actionsflow/actionsflow) |
@@ -11,2 +11,4 @@ export type AnyObject = Record<string, unknown>; | ||
set: (key: string, value: unknown) => Promise<unknown>; | ||
del: (key: string) => Promise<void>; | ||
reset: () => Promise<void>; | ||
}; | ||
@@ -48,2 +50,3 @@ } | ||
items: AnyObject[]; | ||
helpers?: IHelpers; | ||
} | ||
@@ -54,3 +57,3 @@ export interface IWorkflow { | ||
data: AnyObject; | ||
triggers: ITrigger[]; | ||
rawTriggers: ITrigger[]; | ||
} |
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
108
5244
4