libmodulor 0.11.0 → 0.11.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.11.1 (2025-04-03)
4
+
5
+ **Fixed**
6
+
7
+ - Ajust `appPath` in `yarn libmodulor TestApp` command
8
+
3
9
  ## v0.11.0 (2025-04-03)
4
10
 
5
11
  **BREAKING**
package/README.md CHANGED
@@ -23,4 +23,4 @@ If you think you can help in any way, feel free to contact me (cf. `author` in `
23
23
 
24
24
  ## ⚖️ License
25
25
 
26
- [LGPL-3.0](https://github.com/c100k/libmodulor/blob/v0.11.0/LICENSE)
26
+ [LGPL-3.0](https://github.com/c100k/libmodulor/blob/v0.11.1/LICENSE)
@@ -26,7 +26,7 @@ let VitestAppTestSuiteRunner = class VitestAppTestSuiteRunner {
26
26
  const args = [
27
27
  'run',
28
28
  '--dir',
29
- './examples/apps/Spotify',
29
+ appPath,
30
30
  ];
31
31
  if (!skipCoverage) {
32
32
  args.push('--coverage.enabled', '--coverage.exclude', testPath, '--coverage.include', appPath, '--coverage.reportsDirectory', this.coverageReportPath(appPath));
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "libmodulor",
3
3
  "description": "A TypeScript library to create business oriented applications",
4
- "version": "0.11.0",
4
+ "version": "0.11.1",
5
5
  "license": "LGPL-3.0",
6
6
  "author": "Chafik H'nini <chafik.hnini@gmail.com>",
7
7
  "homepage": "https://github.com/c100k/libmodulor#readme",