@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/package.json CHANGED
@@ -1,50 +1,43 @@
1
1
  {
2
- "name": "@cocreate/cron-jobs",
3
- "version": "1.2.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
- "cocreate",
8
- "low-code-framework",
9
- "no-code-framework",
10
- "cocreatejs",
11
- "cocreatejs-component",
12
- "cocreate-framework",
13
- "no-code",
14
- "low-code",
15
- "collaborative-framework",
16
- "realtime",
17
- "realtime-framework",
18
- "collaboration",
19
- "shared-editing",
20
- "html5-framework",
21
- "javascript-framework"
22
- ],
23
- "publishConfig": {
24
- "access": "public"
25
- },
26
- "scripts": {
27
- "start": "npx webpack --config webpack.config.js",
28
- "build": "npx webpack --mode=production --config webpack.config.js",
29
- "dev": "npx webpack --config webpack.config.js --watch",
30
- "postinstall": "node -e \"const { execSync } = require('child_process'); try { execSync('coc --version', { stdio: 'ignore' }); } catch (error) { try { execSync('npm install -g @cocreate/cli', { stdio: 'inherit' }); console.log('Installed \"@cocreate/cli\" globally.'); } catch (error) { console.error('Failed to install \"@cocreate/cli\" globally:', error); } }\""
31
- },
32
- "repository": {
33
- "type": "git",
34
- "url": "git+https://github.com/CoCreate-app/CoCreate-cron-jobs.git"
35
- },
36
- "author": "CoCreate LLC",
37
- "license": "AGPL-3.0",
38
- "bugs": {
39
- "url": "https://github.com/CoCreate-app/CoCreate-cron-jobs/issues"
40
- },
41
- "homepage": "https://cocreate.app/docs/cron-jobs",
42
- "funding": {
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
- module.exports = {
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/git",
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
  ],