@simplysm/sd-cli 12.11.8 → 12.11.9
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.
|
@@ -118,7 +118,7 @@ Options = UnsafeLegacyRenegotiation`.trim());
|
|
|
118
118
|
const env = ${JSON.stringify(this._pkgConf.env)};
|
|
119
119
|
|
|
120
120
|
module.exports = {
|
|
121
|
-
name: pm2Conf.name ?? npmConf.name.replace(
|
|
121
|
+
name: pm2Conf.name ?? npmConf.name.replace(/@/g, "").replace(/[\\\/]/g, "-"),
|
|
122
122
|
script: "main.js",
|
|
123
123
|
watch: true,
|
|
124
124
|
watch_delay: 2000,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simplysm/sd-cli",
|
|
3
|
-
"version": "12.11.
|
|
3
|
+
"version": "12.11.9",
|
|
4
4
|
"description": "심플리즘 패키지 - CLI",
|
|
5
5
|
"author": "김석래",
|
|
6
6
|
"repository": {
|
|
@@ -17,10 +17,10 @@
|
|
|
17
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.
|
|
20
|
+
"@simplysm/sd-core-common": "12.11.9",
|
|
21
|
+
"@simplysm/sd-core-node": "12.11.9",
|
|
22
|
+
"@simplysm/sd-service-server": "12.11.9",
|
|
23
|
+
"@simplysm/sd-storage": "12.11.9",
|
|
24
24
|
"browserslist": "^4.25.0",
|
|
25
25
|
"cordova": "^12.0.0",
|
|
26
26
|
"css-has-pseudo": "^7.0.2",
|
|
@@ -149,7 +149,7 @@ Options = UnsafeLegacyRenegotiation`.trim(),
|
|
|
149
149
|
const env = ${JSON.stringify(this._pkgConf.env)};
|
|
150
150
|
|
|
151
151
|
module.exports = {
|
|
152
|
-
name: pm2Conf.name ?? npmConf.name.replace(
|
|
152
|
+
name: pm2Conf.name ?? npmConf.name.replace(/@/g, "").replace(/[\\\/]/g, "-"),
|
|
153
153
|
script: "main.js",
|
|
154
154
|
watch: true,
|
|
155
155
|
watch_delay: 2000,
|