hyper-scheduler 1.1.3 → 1.1.4
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 +2 -2
- package/package.json +2 -3
- package/dist/logo.svg +0 -54
- package/dist/task-list.png +0 -0
- package/public/logo.svg +0 -54
- package/public/task-list.png +0 -0
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<p align="center">
|
|
2
|
-
<img src="public/logo.svg" width="120" height="120" alt="Hyper Scheduler Logo">
|
|
2
|
+
<img src="https://github.com/CrazyMrYan/hyper-scheduler/raw/main/public/logo.svg" width="120" height="120" alt="Hyper Scheduler Logo">
|
|
3
3
|
</p>
|
|
4
4
|
|
|
5
5
|
<h1 align="center">Hyper Scheduler</h1>
|
|
@@ -21,7 +21,7 @@ A lightweight, dependency-free (core) JavaScript task scheduler supporting Cron
|
|
|
21
21
|
|
|
22
22
|
## DevTools
|
|
23
23
|
|
|
24
|
-

|
|
25
25
|
|
|
26
26
|
## Quick Start
|
|
27
27
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hyper-scheduler",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.4",
|
|
4
4
|
"description": "A lightweight, dependency-free (core) JavaScript task scheduler supporting Cron expressions and Web Workers.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.umd.js",
|
|
@@ -15,8 +15,7 @@
|
|
|
15
15
|
"files": [
|
|
16
16
|
"dist",
|
|
17
17
|
"README.md",
|
|
18
|
-
"LICENSE"
|
|
19
|
-
"public"
|
|
18
|
+
"LICENSE"
|
|
20
19
|
],
|
|
21
20
|
"scripts": {
|
|
22
21
|
"dev": "vite",
|
package/dist/logo.svg
DELETED
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128" fill="none">
|
|
2
|
-
<defs>
|
|
3
|
-
<linearGradient id="main" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
4
|
-
<stop offset="0%" style="stop-color:#6366f1"/>
|
|
5
|
-
<stop offset="100%" style="stop-color:#a855f7"/>
|
|
6
|
-
</linearGradient>
|
|
7
|
-
<linearGradient id="bolt" x1="50%" y1="0%" x2="50%" y2="100%">
|
|
8
|
-
<stop offset="0%" style="stop-color:#fcd34d"/>
|
|
9
|
-
<stop offset="100%" style="stop-color:#f59e0b"/>
|
|
10
|
-
</linearGradient>
|
|
11
|
-
<filter id="glow">
|
|
12
|
-
<feGaussianBlur stdDeviation="2" result="blur"/>
|
|
13
|
-
<feMerge>
|
|
14
|
-
<feMergeNode in="blur"/>
|
|
15
|
-
<feMergeNode in="SourceGraphic"/>
|
|
16
|
-
</feMerge>
|
|
17
|
-
</filter>
|
|
18
|
-
<filter id="softShadow">
|
|
19
|
-
<feDropShadow dx="0" dy="2" stdDeviation="3" flood-color="#6366f1" flood-opacity="0.3"/>
|
|
20
|
-
</filter>
|
|
21
|
-
</defs>
|
|
22
|
-
|
|
23
|
-
<!-- 背景圆 - 柔和填充 -->
|
|
24
|
-
<circle cx="64" cy="64" r="56" fill="url(#main)" opacity="0.1"/>
|
|
25
|
-
|
|
26
|
-
<!-- 刻度点 - 简约时钟感 -->
|
|
27
|
-
<g fill="url(#main)" opacity="0.7">
|
|
28
|
-
<circle cx="64" cy="16" r="4"/>
|
|
29
|
-
<circle cx="112" cy="64" r="4"/>
|
|
30
|
-
<circle cx="64" cy="112" r="4"/>
|
|
31
|
-
<circle cx="16" cy="64" r="4"/>
|
|
32
|
-
</g>
|
|
33
|
-
|
|
34
|
-
<!-- 次要刻度 -->
|
|
35
|
-
<g fill="url(#main)" opacity="0.35">
|
|
36
|
-
<circle cx="98" cy="26" r="2.5"/>
|
|
37
|
-
<circle cx="102" cy="98" r="2.5"/>
|
|
38
|
-
<circle cx="26" cy="98" r="2.5"/>
|
|
39
|
-
<circle cx="30" cy="26" r="2.5"/>
|
|
40
|
-
</g>
|
|
41
|
-
|
|
42
|
-
<!-- 闪电 - 核心元素 -->
|
|
43
|
-
<path d="M72 20 L44 68 L62 68 L52 108 L88 52 L68 52 L72 20Z"
|
|
44
|
-
fill="url(#bolt)"
|
|
45
|
-
filter="url(#glow)"/>
|
|
46
|
-
|
|
47
|
-
<!-- 闪电高光 -->
|
|
48
|
-
<path d="M70 26 L50 64 L62 64 L56 92"
|
|
49
|
-
stroke="#fff"
|
|
50
|
-
stroke-width="2"
|
|
51
|
-
stroke-linecap="round"
|
|
52
|
-
fill="none"
|
|
53
|
-
opacity="0.4"/>
|
|
54
|
-
</svg>
|
package/dist/task-list.png
DELETED
|
Binary file
|
package/public/logo.svg
DELETED
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128" fill="none">
|
|
2
|
-
<defs>
|
|
3
|
-
<linearGradient id="main" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
4
|
-
<stop offset="0%" style="stop-color:#6366f1"/>
|
|
5
|
-
<stop offset="100%" style="stop-color:#a855f7"/>
|
|
6
|
-
</linearGradient>
|
|
7
|
-
<linearGradient id="bolt" x1="50%" y1="0%" x2="50%" y2="100%">
|
|
8
|
-
<stop offset="0%" style="stop-color:#fcd34d"/>
|
|
9
|
-
<stop offset="100%" style="stop-color:#f59e0b"/>
|
|
10
|
-
</linearGradient>
|
|
11
|
-
<filter id="glow">
|
|
12
|
-
<feGaussianBlur stdDeviation="2" result="blur"/>
|
|
13
|
-
<feMerge>
|
|
14
|
-
<feMergeNode in="blur"/>
|
|
15
|
-
<feMergeNode in="SourceGraphic"/>
|
|
16
|
-
</feMerge>
|
|
17
|
-
</filter>
|
|
18
|
-
<filter id="softShadow">
|
|
19
|
-
<feDropShadow dx="0" dy="2" stdDeviation="3" flood-color="#6366f1" flood-opacity="0.3"/>
|
|
20
|
-
</filter>
|
|
21
|
-
</defs>
|
|
22
|
-
|
|
23
|
-
<!-- 背景圆 - 柔和填充 -->
|
|
24
|
-
<circle cx="64" cy="64" r="56" fill="url(#main)" opacity="0.1"/>
|
|
25
|
-
|
|
26
|
-
<!-- 刻度点 - 简约时钟感 -->
|
|
27
|
-
<g fill="url(#main)" opacity="0.7">
|
|
28
|
-
<circle cx="64" cy="16" r="4"/>
|
|
29
|
-
<circle cx="112" cy="64" r="4"/>
|
|
30
|
-
<circle cx="64" cy="112" r="4"/>
|
|
31
|
-
<circle cx="16" cy="64" r="4"/>
|
|
32
|
-
</g>
|
|
33
|
-
|
|
34
|
-
<!-- 次要刻度 -->
|
|
35
|
-
<g fill="url(#main)" opacity="0.35">
|
|
36
|
-
<circle cx="98" cy="26" r="2.5"/>
|
|
37
|
-
<circle cx="102" cy="98" r="2.5"/>
|
|
38
|
-
<circle cx="26" cy="98" r="2.5"/>
|
|
39
|
-
<circle cx="30" cy="26" r="2.5"/>
|
|
40
|
-
</g>
|
|
41
|
-
|
|
42
|
-
<!-- 闪电 - 核心元素 -->
|
|
43
|
-
<path d="M72 20 L44 68 L62 68 L52 108 L88 52 L68 52 L72 20Z"
|
|
44
|
-
fill="url(#bolt)"
|
|
45
|
-
filter="url(#glow)"/>
|
|
46
|
-
|
|
47
|
-
<!-- 闪电高光 -->
|
|
48
|
-
<path d="M70 26 L50 64 L62 64 L56 92"
|
|
49
|
-
stroke="#fff"
|
|
50
|
-
stroke-width="2"
|
|
51
|
-
stroke-linecap="round"
|
|
52
|
-
fill="none"
|
|
53
|
-
opacity="0.4"/>
|
|
54
|
-
</svg>
|
package/public/task-list.png
DELETED
|
Binary file
|