@nuucognition/flint-cli 0.2.0-beta.1 → 0.2.0-beta.2

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.
@@ -7,7 +7,6 @@ import {
7
7
  addLatticeReference,
8
8
  addModToConfig,
9
9
  addShardToConfig,
10
- addWorkspaceEntry,
11
10
  addWorkspaceReference,
12
11
  addWorkspaceRepository,
13
12
  addWorkspaceSourceRepository,
@@ -22,12 +21,9 @@ import {
22
21
  getLatticeReferences,
23
22
  getModDeclarations,
24
23
  getModDeclarationsFromConfig,
25
- getRequiredImports,
26
24
  getRequiredShardNames,
27
25
  getShardDeclarations,
28
26
  getShardDeclarationsFromConfig,
29
- getWorkspaceEntries,
30
- getWorkspaceEntry,
31
27
  getWorkspaceReference,
32
28
  getWorkspaceReferences,
33
29
  getWorkspaceRepositories,
@@ -49,7 +45,6 @@ import {
49
45
  removeLatticeReference,
50
46
  removeModFromConfig,
51
47
  removeShardFromConfig,
52
- removeWorkspaceEntry,
53
48
  removeWorkspaceReference,
54
49
  removeWorkspaceRepository,
55
50
  removeWorkspaceSourceRepository,
@@ -59,7 +54,7 @@ import {
59
54
  toKebabCase,
60
55
  writeFlintJson,
61
56
  writeFlintToml
62
- } from "./chunk-5YLBX2W6.js";
57
+ } from "./chunk-RAH2IR2Z.js";
63
58
  export {
64
59
  FLINT_CONFIG_FILENAME,
65
60
  FLINT_JSON_FILENAME,
@@ -69,7 +64,6 @@ export {
69
64
  addLatticeReference,
70
65
  addModToConfig,
71
66
  addShardToConfig,
72
- addWorkspaceEntry,
73
67
  addWorkspaceReference,
74
68
  addWorkspaceRepository,
75
69
  addWorkspaceSourceRepository,
@@ -84,12 +78,9 @@ export {
84
78
  getLatticeReferences,
85
79
  getModDeclarations,
86
80
  getModDeclarationsFromConfig,
87
- getRequiredImports,
88
81
  getRequiredShardNames,
89
82
  getShardDeclarations,
90
83
  getShardDeclarationsFromConfig,
91
- getWorkspaceEntries,
92
- getWorkspaceEntry,
93
84
  getWorkspaceReference,
94
85
  getWorkspaceReferences,
95
86
  getWorkspaceRepositories,
@@ -111,7 +102,6 @@ export {
111
102
  removeLatticeReference,
112
103
  removeModFromConfig,
113
104
  removeShardFromConfig,
114
- removeWorkspaceEntry,
115
105
  removeWorkspaceReference,
116
106
  removeWorkspaceRepository,
117
107
  removeWorkspaceSourceRepository,
@@ -1,26 +1,26 @@
1
1
  import {
2
2
  cleanRegistryFile,
3
- findFlintById,
4
3
  findFlintByName,
5
4
  findFlintByPath,
6
5
  getFlintRegistry,
7
6
  getFlintRegistryPath,
8
7
  getGlobalFlintDir,
8
+ isFlintNameTaken,
9
9
  isPathRegistered,
10
10
  registerFlint,
11
11
  registerFlintByPath,
12
12
  unregisterFlint,
13
13
  updateFlintEntry,
14
14
  upsertFlintEntry
15
- } from "./chunk-UNMULXL5.js";
15
+ } from "./chunk-VEO4E5HX.js";
16
16
  export {
17
17
  cleanRegistryFile,
18
- findFlintById,
19
18
  findFlintByName,
20
19
  findFlintByPath,
21
20
  getFlintRegistry,
22
21
  getFlintRegistryPath,
23
22
  getGlobalFlintDir,
23
+ isFlintNameTaken,
24
24
  isPathRegistered,
25
25
  registerFlint,
26
26
  registerFlintByPath,
@@ -0,0 +1,8 @@
1
+ import {
2
+ exists,
3
+ runConcurrent
4
+ } from "./chunk-V7YA5RXL.js";
5
+ export {
6
+ exists,
7
+ runConcurrent
8
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nuucognition/flint-cli",
3
- "version": "0.2.0-beta.1",
3
+ "version": "0.2.0-beta.2",
4
4
  "type": "module",
5
5
  "description": "Flint cognitive workspace CLI",
6
6
  "license": "PROPRIETARY",
@@ -13,6 +13,7 @@
13
13
  "dist/"
14
14
  ],
15
15
  "dependencies": {
16
+ "@nuucognition/cli-core": "0.0.1-beta.5",
16
17
  "cfonts": "^3.3.1",
17
18
  "commander": "^12.1.0",
18
19
  "glob": "^10.5.0",
@@ -25,12 +26,12 @@
25
26
  "tsup": "^8.3.5",
26
27
  "tsx": "^4.19.2",
27
28
  "typescript": "^5.9.2",
28
- "@nuucognition/eslint-config": "0.0.0",
29
29
  "@nuucognition/flint": "0.1.0",
30
+ "@nuucognition/lattice": "0.1.0",
30
31
  "@nuucognition/typescript-config": "0.0.0",
31
32
  "@nuucognition/flint-runtime": "0.0.1",
32
- "@nuucognition/flint-migrations": "0.1.0",
33
- "@nuucognition/lattice": "0.1.0"
33
+ "@nuucognition/eslint-config": "0.0.0",
34
+ "@nuucognition/flint-migrations": "0.1.0"
34
35
  },
35
36
  "scripts": {
36
37
  "dev": "FLINT_MODE=dev tsx src/index.ts",