@codenameryuu/adonis-scheduler 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -3
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,15 +1,20 @@
|
|
|
1
|
-
# @codenameryuu/adonis-
|
|
1
|
+
# @codenameryuu/adonis-scheduler
|
|
2
2
|
|
|
3
3
|
This addon adds the functionality to schedule tasks in Adonis JS 7.
|
|
4
4
|
|
|
5
5
|
## Requirement
|
|
6
6
|
|
|
7
7
|
* Adonis Js 7
|
|
8
|
-
* Lucid 22 or higher
|
|
9
8
|
|
|
10
9
|
## Installation
|
|
11
10
|
|
|
12
|
-
Install the package
|
|
11
|
+
* Install the package
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
yarn add @codenameryuu/adonis-scheduler
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
* Add the package to the `adonisrc.ts` file
|
|
13
18
|
|
|
14
19
|
```bash
|
|
15
20
|
node ace add @codenameryuu/adonis-scheduler
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codenameryuu/adonis-scheduler",
|
|
3
3
|
"description": "A task scheduler for AdonisJS",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.1",
|
|
5
5
|
"author": "codenameryuu",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"homepage": "https://github.com/codenameryuu/adonis-scheduler#readme",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"test": "node --enable-source-maps --import=ts-node-maintained/register/esm bin/test.ts"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@adonisjs/core": "^
|
|
35
|
+
"@adonisjs/core": "^7.0.0",
|
|
36
36
|
"@adonisjs/prettier-config": "^1.2.1",
|
|
37
37
|
"@adonisjs/tsconfig": "^1.2.1",
|
|
38
38
|
"@japa/assert": "^4.0.0",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"string-width": "^7.2.0"
|
|
58
58
|
},
|
|
59
59
|
"peerDependencies": {
|
|
60
|
-
"@adonisjs/core": "^
|
|
60
|
+
"@adonisjs/core": "^7.0.0"
|
|
61
61
|
},
|
|
62
62
|
"keywords": [
|
|
63
63
|
"adonis",
|