@simplysm/sd-cli 14.0.26 → 14.0.27
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": "14.0.
|
|
3
|
+
"version": "14.0.27",
|
|
4
4
|
"description": "Simplysm package - CLI tool",
|
|
5
5
|
"author": "simplysm",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -41,9 +41,9 @@
|
|
|
41
41
|
"vite-plugin-solid": "^2.11.12",
|
|
42
42
|
"vite-tsconfig-paths": "^6.1.1",
|
|
43
43
|
"yargs": "^18.0.0",
|
|
44
|
-
"@simplysm/
|
|
45
|
-
"@simplysm/
|
|
46
|
-
"@simplysm/core-
|
|
44
|
+
"@simplysm/core-node": "14.0.27",
|
|
45
|
+
"@simplysm/storage": "14.0.27",
|
|
46
|
+
"@simplysm/core-common": "14.0.27"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"@types/semver": "^7.7.1",
|
|
@@ -58,7 +58,7 @@ describe("angularVitestPlugin", () => {
|
|
|
58
58
|
it("compiles @Directive source and serves ɵdir runtime code", async () => {
|
|
59
59
|
const filePath = resolve(
|
|
60
60
|
workspaceRoot,
|
|
61
|
-
"packages/angular/src/core/directives/sd-events.
|
|
61
|
+
"packages/angular/src/core/directives/sd-events.ts",
|
|
62
62
|
);
|
|
63
63
|
const result = await callTransform(plugin, "", filePath);
|
|
64
64
|
|
|
@@ -52,7 +52,7 @@ describe("ngtsc-build-core: NgtscProgram AOT compilation", () => {
|
|
|
52
52
|
// Acceptance: Scenario "@Directive 데코레이터가 런타임 코드로 변환된다"
|
|
53
53
|
it("transforms @Directive decorator to runtime ɵdir definition", () => {
|
|
54
54
|
// dist already populated from prior test, check directive
|
|
55
|
-
const directiveJsPath = resolve(distDir, "core", "directives", "sd-events.
|
|
55
|
+
const directiveJsPath = resolve(distDir, "core", "directives", "sd-events.js");
|
|
56
56
|
expect(fs.existsSync(directiveJsPath)).toBe(true);
|
|
57
57
|
|
|
58
58
|
const content = fs.readFileSync(directiveJsPath, "utf-8");
|