@simplysm/sd-cli 12.11.4 → 12.11.6
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simplysm/sd-cli",
|
|
3
|
-
"version": "12.11.
|
|
3
|
+
"version": "12.11.6",
|
|
4
4
|
"description": "심플리즘 패키지 - CLI",
|
|
5
5
|
"author": "김석래",
|
|
6
6
|
"repository": {
|
|
@@ -12,19 +12,19 @@
|
|
|
12
12
|
"bin": "./dist/sd-cli.js",
|
|
13
13
|
"type": "module",
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@angular/build": "^
|
|
16
|
-
"@angular/compiler": "^
|
|
17
|
-
"@angular/compiler-cli": "^
|
|
15
|
+
"@angular/build": "^20.0.0",
|
|
16
|
+
"@angular/compiler": "^20.0.0",
|
|
17
|
+
"@angular/compiler-cli": "^20.0.0",
|
|
18
18
|
"@anthropic-ai/sdk": "^0.52.0",
|
|
19
19
|
"@electron/rebuild": "^4.0.1",
|
|
20
|
-
"@simplysm/sd-core-common": "12.11.
|
|
21
|
-
"@simplysm/sd-core-node": "12.11.
|
|
22
|
-
"@simplysm/sd-service-server": "12.11.
|
|
23
|
-
"@simplysm/sd-storage": "12.11.
|
|
24
|
-
"browserslist": "^4.
|
|
20
|
+
"@simplysm/sd-core-common": "12.11.6",
|
|
21
|
+
"@simplysm/sd-core-node": "12.11.6",
|
|
22
|
+
"@simplysm/sd-service-server": "12.11.6",
|
|
23
|
+
"@simplysm/sd-storage": "12.11.6",
|
|
24
|
+
"browserslist": "^4.25.0",
|
|
25
25
|
"cordova": "^12.0.0",
|
|
26
26
|
"css-has-pseudo": "^7.0.2",
|
|
27
|
-
"electron": "^36.3.
|
|
27
|
+
"electron": "^36.3.2",
|
|
28
28
|
"electron-builder": "26.0.15",
|
|
29
29
|
"esbuild": "^0.25.5",
|
|
30
30
|
"eslint": "^9.27.0",
|
|
@@ -36,7 +36,8 @@
|
|
|
36
36
|
"semver": "^7.7.2",
|
|
37
37
|
"specifier-resolution-node": "^1.1.4",
|
|
38
38
|
"ts-morph": "^26.0.0",
|
|
39
|
-
"
|
|
39
|
+
"tslib": "^2.8.1",
|
|
40
|
+
"typescript": "~5.8.3",
|
|
40
41
|
"yargs": "^18.0.0"
|
|
41
42
|
},
|
|
42
43
|
"devDependencies": {
|
|
@@ -11,7 +11,7 @@ describe("SdDependencyCache", () => {
|
|
|
11
11
|
const b = PathUtils.norm("/b.ts");
|
|
12
12
|
const c = PathUtils.norm("/c.ts");
|
|
13
13
|
const html = PathUtils.norm("/comp.html");
|
|
14
|
-
const style = PathUtils.norm("/style.scss");
|
|
14
|
+
// const style = PathUtils.norm("/style.scss");
|
|
15
15
|
|
|
16
16
|
let depCache: SdDependencyCache;
|
|
17
17
|
|
|
@@ -127,10 +127,10 @@ describe("SdDependencyCache", () => {
|
|
|
127
127
|
const trees = depCache.getAffectedFileTree(new Set([a]));
|
|
128
128
|
|
|
129
129
|
expect(trees.length).toBeGreaterThan(0);
|
|
130
|
-
const aNode = trees.find(t => t.fileNPath === a)!;
|
|
131
|
-
expect(aNode.children.some(c1 => c1.fileNPath === b)).toBeTruthy();
|
|
132
|
-
const bNode = aNode.children.find(c1 => c1.fileNPath === b)!;
|
|
133
|
-
expect(bNode.children.some(c2 => c2.fileNPath === c)).toBeTruthy();
|
|
130
|
+
const aNode = trees.find((t) => t.fileNPath === a)!;
|
|
131
|
+
expect(aNode.children.some((c1) => c1.fileNPath === b)).toBeTruthy();
|
|
132
|
+
const bNode = aNode.children.find((c1) => c1.fileNPath === b)!;
|
|
133
|
+
expect(bNode.children.some((c2) => c2.fileNPath === c)).toBeTruthy();
|
|
134
134
|
|
|
135
135
|
const printTree = (node: ISdAffectedFileTreeNode, indent = "") => {
|
|
136
136
|
console.log(indent + node.fileNPath);
|