@cocreate/cron-jobs 1.2.0 → 1.4.0
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/.github/workflows/automated.yml +25 -38
- package/CHANGELOG.md +31 -0
- package/docs/index.html +216 -216
- package/package.json +41 -48
- package/release.config.js +12 -4
- package/src/index.js +322 -327
package/package.json
CHANGED
|
@@ -1,50 +1,43 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
"
|
|
42
|
-
|
|
43
|
-
"type": "GitHub Sponsors ❤",
|
|
44
|
-
"url": "https://github.com/sponsors/CoCreate-app"
|
|
45
|
-
},
|
|
46
|
-
"main": "./src/index.js",
|
|
47
|
-
"dependencies": {
|
|
48
|
-
"node-html-parser": "^6.1.13"
|
|
49
|
-
}
|
|
2
|
+
"name": "@cocreate/cron-jobs",
|
|
3
|
+
"version": "1.4.0",
|
|
4
|
+
"description": "A simple cron-jobs component in vanilla javascript. Easily configured using HTML5 data-attributes and/or JavaScript API.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"cron-jobs",
|
|
7
|
+
"low-code",
|
|
8
|
+
"realtime",
|
|
9
|
+
"realtime-framework",
|
|
10
|
+
"collaboration",
|
|
11
|
+
"shared-editing",
|
|
12
|
+
"html5-framework",
|
|
13
|
+
"javascript-framework"
|
|
14
|
+
],
|
|
15
|
+
"publishConfig": {
|
|
16
|
+
"access": "public"
|
|
17
|
+
},
|
|
18
|
+
"scripts": {
|
|
19
|
+
"start": "npx webpack --config webpack.config.js",
|
|
20
|
+
"build": "npx webpack --mode=production --config webpack.config.js",
|
|
21
|
+
"dev": "npx webpack --config webpack.config.js --watch"
|
|
22
|
+
},
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "git+https://github.com/CoCreate-app/CoCreate-cron-jobs.git"
|
|
26
|
+
},
|
|
27
|
+
"author": "CoCreate LLC",
|
|
28
|
+
"license": "AGPL-3.0",
|
|
29
|
+
"bugs": {
|
|
30
|
+
"url": "https://github.com/CoCreate-app/CoCreate-cron-jobs/issues"
|
|
31
|
+
},
|
|
32
|
+
"homepage": "https://cocreate.app/docs/cron-jobs",
|
|
33
|
+
"funding": {
|
|
34
|
+
"type": "GitHub Sponsors ❤",
|
|
35
|
+
"url": "https://github.com/sponsors/CoCreate-app"
|
|
36
|
+
},
|
|
37
|
+
"type": "module",
|
|
38
|
+
"main": "./src/index.js",
|
|
39
|
+
"dependencies": {
|
|
40
|
+
"cron-parser": "^4.9.0",
|
|
41
|
+
"node-html-parser": "^6.1.13"
|
|
42
|
+
}
|
|
50
43
|
}
|
package/release.config.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
export default {
|
|
2
2
|
dryRun: false,
|
|
3
3
|
branches: ["master"],
|
|
4
4
|
plugins: [
|
|
@@ -10,12 +10,20 @@ module.exports = {
|
|
|
10
10
|
changelogFile: "CHANGELOG.md",
|
|
11
11
|
},
|
|
12
12
|
],
|
|
13
|
-
"@semantic-release/npm",
|
|
14
|
-
"@semantic-release/github",
|
|
13
|
+
"@semantic-release/npm",
|
|
15
14
|
[
|
|
16
|
-
"@semantic-release/
|
|
15
|
+
"@semantic-release/github",
|
|
17
16
|
{
|
|
17
|
+
successComment: false,
|
|
18
|
+
failTitle: false,
|
|
19
|
+
},
|
|
20
|
+
],
|
|
21
|
+
[
|
|
22
|
+
"@semantic-release/git",
|
|
23
|
+
{
|
|
24
|
+
// Only stage and commit the changelog and package.json
|
|
18
25
|
assets: ["CHANGELOG.md", "package.json"],
|
|
26
|
+
message: "chore(release): ${nextRelease.version} [skip ci]",
|
|
19
27
|
},
|
|
20
28
|
],
|
|
21
29
|
],
|