libmodulor 0.13.0 → 0.13.1

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
@@ -1,5 +1,11 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## v0.13.1 (2025-05-02)
4
+
5
+ **Fixed**
6
+
7
+ - Disable TypeScript [incremental](https://www.typescriptlang.org/tsconfig/#incremental) when analyzing app sources in automated test
8
+
3
9
  ## v0.13.0 (2025-04-25)
4
10
 
5
11
  **Added**
package/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  [![npm version](https://img.shields.io/npm/v/libmodulor.svg?style=for-the-badge&color=blue)](https://www.npmjs.com/package/libmodulor)
4
4
  [![license](https://img.shields.io/badge/license-LGPL-green.svg?style=for-the-badge)](https://github.com/c100k/libmodulor/blob/master/LICENSE)
5
5
 
6
- A TypeScript library to create business oriented applications.
6
+ A TypeScript library to create platform-agnostic applications.
7
7
 
8
8
  ## 🚀 Getting Started
9
9
 
@@ -17,4 +17,4 @@ If you think you can help in any way, feel free to contact me (cf. `author` in `
17
17
 
18
18
  ## ⚖️ License
19
19
 
20
- [LGPL-3.0](https://github.com/c100k/libmodulor/blob/v0.13.0/LICENSE)
20
+ [LGPL-3.0](https://github.com/c100k/libmodulor/blob/v0.13.1/LICENSE)
@@ -42,8 +42,8 @@ export const PACKAGE_JSON = (name) => `{
42
42
  },
43
43
  "devDependencies": {
44
44
  "@biomejs/biome": "^1.9.4",
45
- "@types/node": "^22.14.1",
46
- "@vitest/coverage-v8": "^3.1.1",
45
+ "@types/node": "^22.15.2",
46
+ "@vitest/coverage-v8": "^3.1.2",
47
47
  "buffer": "^6.0.3",
48
48
  "cookie-parser": "^1.4.7",
49
49
  "express": "^5.1.0",
@@ -52,8 +52,8 @@ export const PACKAGE_JSON = (name) => `{
52
52
  "helmet": "^8.1.0",
53
53
  "jose": "^6.0.10",
54
54
  "typescript": "^5.8.3",
55
- "vite": "^6.3.2",
56
- "vitest": "^3.1.1"
55
+ "vite": "^6.3.3",
56
+ "vitest": "^3.1.2"
57
57
  }
58
58
  }
59
59
  `;
@@ -92,6 +92,7 @@ let TypeScriptLibUCDefASTParser = class TypeScriptLibUCDefASTParser {
92
92
  target: ScriptTarget[(compilerOptionsBase.target ??
93
93
  target)],
94
94
  };
95
+ this.compilerOptions.incremental = false; // Otherwise it triggers the following error : Option '--incremental' can only be specified using tsconfig, emitting to single file or when option '--tsBuildInfoFile' is specified.
95
96
  // @ts-ignore
96
97
  this.compilerOptions.jsx = undefined; // Otherwise it triggers the following error since TS 5.5 : jsx is a string value; tsconfig JSON must be parsed with parseJsonSourceFileConfigFileContent or getParsedCommandLineOfConfigFile before passing to createProgram
97
98
  // @ts-ignore
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "libmodulor",
3
- "description": "A TypeScript library to create business oriented applications",
4
- "version": "0.13.0",
3
+ "description": "A TypeScript library to create platform-agnostic applications",
4
+ "version": "0.13.1",
5
5
  "license": "LGPL-3.0",
6
6
  "author": "Chafik H'nini <chafik.hnini@gmail.com>",
7
7
  "homepage": "https://libmodulor.c100k.eu",
@@ -82,7 +82,7 @@
82
82
  },
83
83
  "peerDependencies": {
84
84
  "@hono/node-server": "^1.14.1",
85
- "@modelcontextprotocol/sdk": "^1.10.1",
85
+ "@modelcontextprotocol/sdk": "^1.10.2",
86
86
  "@stricli/core": "^1.1.2",
87
87
  "buffer": "^6.0.3",
88
88
  "cookie-parser": "^1.4.7",
@@ -95,15 +95,15 @@
95
95
  "jose": "^6.0.10",
96
96
  "knex": "^3.1.0",
97
97
  "next": "^15.3.1",
98
- "pg": "^8.14.1",
98
+ "pg": "^8.15.6",
99
99
  "react": "^19.1.0",
100
100
  "react-dom": "^19.1.0",
101
101
  "react-native": "^0.79.1",
102
102
  "reflect-metadata": "^0.2.2",
103
103
  "sqlite3": "^5.1.7",
104
104
  "typescript": "^5.8.3",
105
- "vite": "^6.3.2",
106
- "vitest": "^3.1.1"
105
+ "vite": "^6.3.3",
106
+ "vitest": "^3.1.2"
107
107
  },
108
108
  "peerDependenciesMeta": {
109
109
  "@hono/node-server": {