Skip to content

Commit 80aba9b

Browse files
build: 3.0.0
build: 3.0.0
1 parent 1016329 commit 80aba9b

File tree

7 files changed

+360
-1492
lines changed

7 files changed

+360
-1492
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2020 Runnerty Tech S.L
3+
Copyright (c) 2021 Runnerty Tech S.L
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,20 @@ Module for the creation of waiting processes.
1616
```bash
1717
npm i @runnerty/executor-wait
1818
```
19+
20+
You can also add modules to your project with [runnerty-cli]
21+
22+
```bash
23+
npx runnerty-cli add @runnerty/executor-wait
24+
```
25+
26+
This command installs the module in your project, adds example configuration in your `config.json` and creates an example plan of use.
27+
28+
If you have installed [runnerty-cli] globally you can include the module with this command:
29+
30+
```bash
31+
rty add @runnerty/executor-wait
32+
```
1933
### Configuration:
2034
Add in [config.json]:
2135
```json
@@ -48,4 +62,5 @@ Add in [plan.json]:
4862
[npm-image]: https://img.shields.io/npm/v/@runnerty/executor-wait.svg
4963
[config.json]: http://docs.runnerty.io/config/
5064
[plan.json]: http://docs.runnerty.io/plan/
65+
[runnerty-cli]: https://www.npmjs.com/package/runnerty-cli
5166

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
const ms = require('ms');
44

5-
const Executor = global.ExecutionClass;
5+
const Executor = require('@runnerty/module-core').Executor;
66

77
class waitExecutor extends Executor {
88
constructor(process) {

0 commit comments

Comments
 (0)