@lakutata/cli 2.14.1 → 2.14.3

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,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.14.3](https://github.com/lakutata/lakutata-packages/compare/@lakutata/cli@2.14.2...@lakutata/cli@2.14.3) (2025-07-11)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **cli:** remove redundant enum validation in ConvertDTO2Inquirer ([cc528b8](https://github.com/lakutata/lakutata-packages/commit/cc528b812c29cbc2de541d21af5283b53848c149))
12
+
13
+
14
+
15
+
16
+
17
+ ## [2.14.2](https://github.com/lakutata/lakutata-packages/compare/@lakutata/cli@2.14.1...@lakutata/cli@2.14.2) (2025-07-11)
18
+
19
+ **Note:** Version bump only for package @lakutata/cli
20
+
21
+
22
+
23
+
24
+
6
25
  ## [2.14.1](https://github.com/lakutata/lakutata-packages/compare/@lakutata/cli@2.14.0...@lakutata/cli@2.14.1) (2025-07-11)
7
26
 
8
27
  **Note:** Version bump only for package @lakutata/cli
@@ -35,8 +35,7 @@ async function ConvertDTO2Inquirer(dto) {
35
35
  choices: enums.map((value) => ({
36
36
  name: value,
37
37
  value: value
38
- })),
39
- validate: (input) => enums.includes(input)
38
+ }))
40
39
  });
41
40
  }
42
41
  else {
@@ -27,7 +27,7 @@ __decorate([
27
27
  (0, dto_1.Expect)(lakutata_1.DTO
28
28
  .String()
29
29
  .required()
30
- .pattern(/^(\w+\.?)*\w+$/)
30
+ .pattern(/^([a-zA-Z0-9_-]+\.?)*[a-zA-Z0-9_-]+$/)
31
31
  .description('Specify the name of the application')),
32
32
  __metadata("design:type", String)
33
33
  ], CreateProjectOptions.prototype, "name", void 0);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lakutata/cli",
3
- "version": "2.14.1",
3
+ "version": "2.14.3",
4
4
  "description": "Lakutata CLI tool",
5
5
  "keywords": [
6
6
  "lakutata",
@@ -50,5 +50,5 @@
50
50
  "devDependencies": {
51
51
  "@types/degit": "^2.8.6"
52
52
  },
53
- "gitHead": "134e4e8468039341f9e309935f4a1b796ecb40b2"
53
+ "gitHead": "6d0aa3b45b0697725f11eac9115b4e567b875f2a"
54
54
  }
@@ -1,4 +0,0 @@
1
- import { DTO } from 'lakutata';
2
- export declare class LakutataInfoOptions extends DTO {
3
- }
4
- //# sourceMappingURL=LakutataInfoOptions.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"LakutataInfoOptions.d.ts","sourceRoot":"","sources":["../../src/options/LakutataInfoOptions.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,GAAG,EAAC,MAAM,UAAU,CAAA;AAE5B,qBAAa,mBAAoB,SAAQ,GAAG;CAC3C"}
@@ -1,7 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.LakutataInfoOptions = void 0;
4
- const lakutata_1 = require("lakutata");
5
- class LakutataInfoOptions extends lakutata_1.DTO {
6
- }
7
- exports.LakutataInfoOptions = LakutataInfoOptions;