@simplysm/sd-cli 12.3.1 → 12.3.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.
package/dist/sd-cli.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- #!/usr/bin/env node
1
+ #!/usr/bin/env node --import=specifier-resolution-node/register
2
2
  export {};
package/dist/sd-cli.js CHANGED
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env node
1
+ #!/usr/bin/env node --import=specifier-resolution-node/register
2
2
  import yargs from "yargs";
3
3
  import { hideBin } from "yargs/helpers";
4
4
  import { SdCliProject } from "./entry/SdCliProject";
@@ -1,7 +1,7 @@
1
1
  import {fileURLToPath} from "url";
2
2
  import * as fs from "node:fs";
3
3
 
4
- const filePath = fileURLToPath(await import.meta.resolve("@angular/build/package.json"));
4
+ const filePath = fileURLToPath(import.meta.resolve("@angular/build/package.json"));
5
5
  const contents = JSON.parse(fs.readFileSync(filePath).toString());
6
6
  delete contents.exports;
7
7
  fs.writeFileSync(filePath, JSON.stringify(contents, undefined, 2));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@simplysm/sd-cli",
3
- "version": "12.3.1",
3
+ "version": "12.3.2",
4
4
  "description": "심플리즘 패키지 - CLI",
5
5
  "author": "김석래",
6
6
  "repository": {
@@ -17,19 +17,17 @@
17
17
  "node": "20.16.0"
18
18
  },
19
19
  "scripts": {
20
- "postinstall": "node --experimental-import-meta-resolve lib/postinstall.js"
20
+ "postinstall": "node lib/postinstall.js"
21
21
  },
22
22
  "dependencies": {
23
23
  "@angular/build": "^18.2.1",
24
- "@angular/common": "^18.2.1",
25
24
  "@angular/compiler": "^18.2.1",
26
25
  "@angular/compiler-cli": "^18.2.1",
27
- "@angular/core": "^18.2.1",
28
26
  "@electron/rebuild": "^3.6.0",
29
- "@simplysm/sd-core-common": "12.3.1",
30
- "@simplysm/sd-core-node": "12.3.1",
31
- "@simplysm/sd-service-server": "12.3.1",
32
- "@simplysm/sd-storage": "12.3.1",
27
+ "@simplysm/sd-core-common": "12.3.2",
28
+ "@simplysm/sd-core-node": "12.3.2",
29
+ "@simplysm/sd-service-server": "12.3.2",
30
+ "@simplysm/sd-storage": "12.3.2",
33
31
  "browserslist": "^4.23.3",
34
32
  "cordova": "^12.0.0",
35
33
  "electron": "^32.0.1",
@@ -41,6 +39,7 @@
41
39
  "rxjs": "^7.8.1",
42
40
  "sass": "^1.77.8",
43
41
  "semver": "^7.6.3",
42
+ "specifier-resolution-node": "^1.1.4",
44
43
  "typescript": "~5.5.4",
45
44
  "xml2js": "^0.6.2",
46
45
  "yargs": "^17.7.2",
package/src/sd-cli.ts CHANGED
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env node
1
+ #!/usr/bin/env node --import=specifier-resolution-node/register
2
2
 
3
3
  import yargs from "yargs";
4
4
  import {hideBin} from "yargs/helpers";