@arikajs/scheduler 0.10.8 → 0.10.9
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/CHANGELOG.md +17 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @arikajs/scheduler
|
|
2
2
|
|
|
3
|
+
## 0.10.9
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 394c886: - chore: switch license from MIT to BSL-1.1 for all packages
|
|
8
|
+
- fix(ci): add ESLint v8 and root .eslintrc.json to resolve CI lint failures
|
|
9
|
+
- fix(foundation): correct prefer-const and ban-types lint errors
|
|
10
|
+
- fix(router): correct prefer-const lint error in RouteEntry
|
|
11
|
+
- docs: add trademark notice and BSL-1.1 license information to README
|
|
12
|
+
- Updated dependencies [394c886]
|
|
13
|
+
- @arikajs/logging@0.10.9
|
|
14
|
+
- @arikajs/foundation@0.10.9
|
|
15
|
+
- @arikajs/cache@0.10.9
|
|
16
|
+
- @arikajs/console@0.10.9
|
|
17
|
+
- @arikajs/events@0.10.9
|
|
18
|
+
- @arikajs/queue@0.10.9
|
|
19
|
+
|
|
3
20
|
## 0.10.8
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arikajs/scheduler",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.9",
|
|
4
4
|
"description": "Task scheduling for ArikaJS.",
|
|
5
|
-
"license": "
|
|
5
|
+
"license": "BSL-1.1",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
8
8
|
"dependencies": {
|
|
9
9
|
"cron-parser": "^4.9.0",
|
|
10
|
-
"@arikajs/foundation": "0.10.
|
|
11
|
-
"@arikajs/logging": "0.10.
|
|
12
|
-
"@arikajs/queue": "0.10.
|
|
13
|
-
"@arikajs/
|
|
14
|
-
"@arikajs/
|
|
15
|
-
"@arikajs/
|
|
10
|
+
"@arikajs/foundation": "0.10.9",
|
|
11
|
+
"@arikajs/logging": "0.10.9",
|
|
12
|
+
"@arikajs/queue": "0.10.9",
|
|
13
|
+
"@arikajs/console": "0.10.9",
|
|
14
|
+
"@arikajs/events": "0.10.9",
|
|
15
|
+
"@arikajs/cache": "0.10.9"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@types/node": "^20.11.24",
|