@messenger-box/cron-job-server-module 10.0.2-alpha.5 → 10.0.3-alpha.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/CHANGELOG.md CHANGED
@@ -3,6 +3,10 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [10.0.3-alpha.0](https://github.com/cdmbase/messenger-box/compare/v10.0.2-alpha.6...v10.0.3-alpha.0) (2025-02-24)
7
+
8
+ **Note:** Version bump only for package @messenger-box/cron-job-server-module
9
+
6
10
  ## [10.0.2-alpha.5](https://github.com/CDEBase/messenger-box/compare/v10.0.2-alpha.4...v10.0.2-alpha.5) (2025-02-24)
7
11
 
8
12
  **Note:** Version bump only for package @messenger-box/cron-job-server-module
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@messenger-box/cron-job-server-module",
3
- "version": "10.0.2-alpha.5",
3
+ "version": "10.0.3-alpha.0",
4
4
  "description": "Extension to Messenger box cron jobs server",
5
5
  "license": "ISC",
6
6
  "author": "CDMBase LLC",
@@ -21,8 +21,8 @@
21
21
  "watch": "yarn build:lib:watch"
22
22
  },
23
23
  "dependencies": {
24
- "@messenger-box/core": "10.0.2-alpha.5",
25
- "@messenger-box/platform-server": "10.0.2-alpha.5",
24
+ "@messenger-box/core": "10.0.3-alpha.0",
25
+ "@messenger-box/platform-server": "10.0.3-alpha.0",
26
26
  "@skoropletov/moleculer-cron-tasks": "^0.0.8"
27
27
  },
28
28
  "devDependencies": {
@@ -58,5 +58,5 @@
58
58
  "typescript": {
59
59
  "definition": "lib/index.d.ts"
60
60
  },
61
- "gitHead": "a54223fc4058746a7e563003413e9c7b394a38aa"
61
+ "gitHead": "cb604ad29beef9310b8888965ce9d9abad241793"
62
62
  }
package/rollup.config.mjs CHANGED
@@ -1,31 +1,36 @@
1
1
  import { createRollupConfig } from '../../../rollup.config.base.mjs';
2
2
 
3
3
  // Define any additional plugins specific to this bundle
4
- const additionalPlugins = [
5
- ];
4
+ const additionalPlugins = [];
6
5
 
7
6
  // Use the createRollupConfig function to merge the base and specific configurations
8
7
  export default (commandLineArgs) => {
9
8
  const isWatchMode = commandLineArgs.watch;
10
9
  return [
11
- createRollupConfig({
12
- input: ['src/index.ts'],
13
- plugins: [
14
- // Spread in additional plugins specific to this config
15
- ...additionalPlugins,
16
- ],
17
- output: [
10
+ createRollupConfig(
18
11
  {
19
- dir: 'lib',
20
- format: 'es',
21
- name: 'Accounts',
22
- compact: true,
23
- exports: 'named',
24
- sourcemap: true,
25
- preserveModules: true,
26
- chunkFileNames: '[name]-[hash].[format].js',
12
+ input: ['src/index.ts'],
13
+ plugins: [
14
+ // Spread in additional plugins specific to this config
15
+ ...additionalPlugins,
16
+ ],
17
+ output: [
18
+ {
19
+ dir: 'lib',
20
+ format: 'es',
21
+ name: 'Accounts',
22
+ compact: true,
23
+ exports: 'named',
24
+ sourcemap: true,
25
+ preserveModules: true,
26
+ chunkFileNames: '[name]-[hash].[format].js',
27
+ },
28
+ ],
27
29
  },
28
- ],
29
- }, isWatchMode),
30
- ];
30
+ {
31
+ isWatchMode,
32
+ generateRoutesJSON: false,
33
+ },
34
+ ),
35
+ ];
31
36
  };
package/lib/routes.json DELETED
@@ -1 +0,0 @@
1
- []