@arikajs/scheduler 0.10.9 → 0.10.11
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 +30 -2
- package/LICENSE +1 -1
- package/README.md +1 -1
- package/package.json +15 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,14 +1,42 @@
|
|
|
1
1
|
# @arikajs/scheduler
|
|
2
2
|
|
|
3
|
+
## 0.10.11
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 360cda5: chore: transition to MIT license, update community links, and improve package metadata for public release.
|
|
8
|
+
- Updated dependencies [360cda5]
|
|
9
|
+
- @arikajs/cache@0.10.11
|
|
10
|
+
- @arikajs/console@0.10.11
|
|
11
|
+
- @arikajs/events@0.10.11
|
|
12
|
+
- @arikajs/foundation@0.10.11
|
|
13
|
+
- @arikajs/logging@0.10.11
|
|
14
|
+
- @arikajs/queue@0.10.11
|
|
15
|
+
|
|
16
|
+
## 0.10.10
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- a1f7aac: - chore: complete transition of all individual package LICENSE files to MIT
|
|
21
|
+
- docs: update all package READMEs to reflect the new MIT licensing and trademark notice
|
|
22
|
+
- chore: remove all remaining references to MIT license from the active source and documentation
|
|
23
|
+
- Updated dependencies [a1f7aac]
|
|
24
|
+
- @arikajs/cache@0.10.10
|
|
25
|
+
- @arikajs/console@0.10.10
|
|
26
|
+
- @arikajs/events@0.10.10
|
|
27
|
+
- @arikajs/foundation@0.10.10
|
|
28
|
+
- @arikajs/logging@0.10.10
|
|
29
|
+
- @arikajs/queue@0.10.10
|
|
30
|
+
|
|
3
31
|
## 0.10.9
|
|
4
32
|
|
|
5
33
|
### Patch Changes
|
|
6
34
|
|
|
7
|
-
- 394c886: - chore: switch license from MIT to
|
|
35
|
+
- 394c886: - chore: switch license from MIT to MIT for all packages
|
|
8
36
|
- fix(ci): add ESLint v8 and root .eslintrc.json to resolve CI lint failures
|
|
9
37
|
- fix(foundation): correct prefer-const and ban-types lint errors
|
|
10
38
|
- fix(router): correct prefer-const lint error in RouteEntry
|
|
11
|
-
- docs: add trademark notice and
|
|
39
|
+
- docs: add trademark notice and MIT license information to README
|
|
12
40
|
- Updated dependencies [394c886]
|
|
13
41
|
- @arikajs/logging@0.10.9
|
|
14
42
|
- @arikajs/foundation@0.10.9
|
package/LICENSE
CHANGED
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arikajs/scheduler",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.11",
|
|
4
4
|
"description": "Task scheduling for ArikaJS.",
|
|
5
|
-
"license": "
|
|
5
|
+
"license": "MIT",
|
|
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/
|
|
13
|
-
"@arikajs/
|
|
14
|
-
"@arikajs/events": "0.10.
|
|
15
|
-
"@arikajs/cache": "0.10.
|
|
10
|
+
"@arikajs/foundation": "0.10.11",
|
|
11
|
+
"@arikajs/logging": "0.10.11",
|
|
12
|
+
"@arikajs/console": "0.10.11",
|
|
13
|
+
"@arikajs/queue": "0.10.11",
|
|
14
|
+
"@arikajs/events": "0.10.11",
|
|
15
|
+
"@arikajs/cache": "0.10.11"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@types/node": "^20.11.24",
|
|
@@ -29,6 +29,13 @@
|
|
|
29
29
|
"url": "https://github.com/ArikaJs/arikajs/issues"
|
|
30
30
|
},
|
|
31
31
|
"homepage": "https://github.com/ArikaJs/arikajs/tree/main/packages/scheduler#readme",
|
|
32
|
+
"keywords": [
|
|
33
|
+
"arikajs",
|
|
34
|
+
"framework",
|
|
35
|
+
"node.js",
|
|
36
|
+
"typescript",
|
|
37
|
+
"scheduler"
|
|
38
|
+
],
|
|
32
39
|
"scripts": {
|
|
33
40
|
"build": "tsc -p tsconfig.json",
|
|
34
41
|
"clean": "rm -rf dist",
|