@lakutata/cli 2.10.0 → 2.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 +19 -0
- package/LICENSE +23 -0
- package/README.md +42 -1
- package/dist/lib/providers/TemplateManager.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,25 @@
|
|
|
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
|
+
## [2.11.1](https://github.com/lakutata/lakutata-packages/compare/@lakutata/cli@2.11.0...@lakutata/cli@2.11.1) (2024-08-04)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @lakutata/cli
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [2.11.0](https://github.com/lakutata/lakutata-packages/compare/@lakutata/cli@2.10.0...@lakutata/cli@2.11.0) (2024-08-03)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* **cli:** add 'templates' command to list available project templates ([c04ba99](https://github.com/lakutata/lakutata-packages/commit/c04ba9923d78623418aeb519c952ed5e0ec7d969))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
# [2.10.0](https://github.com/lakutata/lakutata-packages/compare/@lakutata/cli@2.9.0...@lakutata/cli@2.10.0) (2024-08-03)
|
|
7
26
|
|
|
8
27
|
|
package/LICENSE
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2023-present Lakutata
|
|
4
|
+
|
|
5
|
+
All rights reserved
|
|
6
|
+
|
|
7
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
9
|
+
in the Software without restriction, including without limitation the rights
|
|
10
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
11
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
12
|
+
furnished to do so, subject to the following conditions:
|
|
13
|
+
|
|
14
|
+
The above copyright notice and this permission notice shall be included in all
|
|
15
|
+
copies or substantial portions of the Software.
|
|
16
|
+
|
|
17
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
18
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
19
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
20
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
21
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
22
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
23
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1 +1,42 @@
|
|
|
1
|
-
|
|
1
|
+
<div align="center">
|
|
2
|
+
|
|
3
|
+

|
|
4
|
+
|
|
5
|
+
</div>
|
|
6
|
+
|
|
7
|
+
<div align="center">
|
|
8
|
+
|
|
9
|
+
)
|
|
10
|
+
)
|
|
11
|
+
)
|
|
12
|
+
)
|
|
13
|
+

|
|
14
|
+
|
|
15
|
+
</div>
|
|
16
|
+
|
|
17
|
+
## 💫 Description
|
|
18
|
+
|
|
19
|
+
Lakutata is a generic development framework written in TypeScript and designed with IoC principles. Its main objective
|
|
20
|
+
is to provide a universal, efficient, and stable development framework. The design goals of Lakutata are not limited to
|
|
21
|
+
web application development; it aims to serve as a foundational framework for desktop applications, embedded systems
|
|
22
|
+
applications, and web applications. The framework primarily adopts an OOP (Object-Oriented Programming) approach and
|
|
23
|
+
encapsulates functionalities such as subprocesses, threads, permission management, and database ORM, enabling the
|
|
24
|
+
framework to be used out of the box.
|
|
25
|
+
|
|
26
|
+
In addition, Lakutata also supports the integration of third-party libraries into the application, allowing developers
|
|
27
|
+
to freely encapsulate and call third-party modules using Lakutata's dependency injection.
|
|
28
|
+
|
|
29
|
+
## ✨ Getting started
|
|
30
|
+
|
|
31
|
+
- Install lakutata cli tool
|
|
32
|
+
```shell
|
|
33
|
+
npm install -g @lakutata/cli
|
|
34
|
+
```
|
|
35
|
+
- Show available commands
|
|
36
|
+
```shell
|
|
37
|
+
lakutata --help
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
## 🌎 License
|
|
41
|
+
|
|
42
|
+
Lakutata is [MIT licensed](LICENSE).
|
|
@@ -137,7 +137,7 @@ class TemplateManager extends lakutata_1.Provider {
|
|
|
137
137
|
];
|
|
138
138
|
}));
|
|
139
139
|
console.log(table.toString());
|
|
140
|
-
console.log(
|
|
140
|
+
console.log(`Template list last updated on: ${ansis_1.default.bold(new lakutata_1.Time(updatedAt).format('YYYY-MM-DD HH:mm:ss'))}`);
|
|
141
141
|
}
|
|
142
142
|
}
|
|
143
143
|
exports.TemplateManager = TemplateManager;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lakutata/cli",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.11.1",
|
|
4
4
|
"description": "Lakutata CLI tool",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"lakutata",
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"@types/degit": "^2.8.6"
|
|
50
50
|
},
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "780425b8e9983d3eddf0cd66eb94ba5602ad63c6"
|
|
52
52
|
}
|