libmodulor 0.6.0 → 0.6.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 +6 -0
- package/README.md +4 -4
- package/dist/esm/apps/Helper/src/lib/project.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -27,9 +27,9 @@ Applications created with `libmodulor` have **6 main properties** :
|
|
|
27
27
|
|
|
28
28
|
## 🚀 Getting Started
|
|
29
29
|
|
|
30
|
-
If you're discovering `libmodulor`, we recommend reading the [📖 Introduction](https://github.com/c100k/libmodulor/blob/v0.6.
|
|
30
|
+
If you're discovering `libmodulor`, we recommend reading the [📖 Introduction](https://github.com/c100k/libmodulor/blob/v0.6.1/docs/Introduction.md) first. It will give you an overview of what `libmodulor` is and how it works.
|
|
31
31
|
|
|
32
|
-
If you want to learn by doing, you can follow the [🚀 Tutorial](https://github.com/c100k/libmodulor/blob/v0.6.
|
|
32
|
+
If you want to learn by doing, you can follow the [🚀 Tutorial](https://github.com/c100k/libmodulor/blob/v0.6.1/docs/Tutorial.md). It contains multiple steps showing you the basics of `libmodulor`. We'll build a small Trading app that will allow us to buy an asset from `curl`, a SPA, a CLI, Claude Desktop, an Android mobile app and an iOS mobile app !
|
|
33
33
|
|
|
34
34
|
If you're felling adventurous, create a project and start building your own application, with your own apps, use cases, products, targets :
|
|
35
35
|
|
|
@@ -37,7 +37,7 @@ If you're felling adventurous, create a project and start building your own appl
|
|
|
37
37
|
npx libmodulor CreateProject --outPath ~/Downloads --projectName libmodulor-projx
|
|
38
38
|
```
|
|
39
39
|
|
|
40
|
-
Finally, for more advanced uses, check out the [📜 Guides](https://github.com/c100k/libmodulor/blob/v0.6.
|
|
40
|
+
Finally, for more advanced uses, check out the [📜 Guides](https://github.com/c100k/libmodulor/blob/v0.6.1/docs/Guides.md).
|
|
41
41
|
|
|
42
42
|
## 👨💻 Contribute
|
|
43
43
|
|
|
@@ -45,4 +45,4 @@ If you think you can help in any way, feel free to contact me (cf. `author` in `
|
|
|
45
45
|
|
|
46
46
|
## ⚖️ License
|
|
47
47
|
|
|
48
|
-
[LGPL-3.0](https://github.com/c100k/libmodulor/blob/v0.6.
|
|
48
|
+
[LGPL-3.0](https://github.com/c100k/libmodulor/blob/v0.6.1/LICENSE)
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "libmodulor",
|
|
3
3
|
"description": "An opinionated TypeScript library to create business oriented applications",
|
|
4
|
-
"version": "0.6.
|
|
4
|
+
"version": "0.6.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",
|