@clazic/urban 0.2.1 → 0.2.3
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 +2 -2
- package/src/install/daemon.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@clazic/urban",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.3",
|
|
4
4
|
"description": "도시계획연구 보고서 자동 수집·지식베이스 데몬",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"engines": {
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"scripts": {
|
|
14
14
|
"start": "node src/daemon.js",
|
|
15
15
|
"test": "node --test test/**/*.test.js",
|
|
16
|
-
"postinstall": "
|
|
16
|
+
"postinstall": "node scripts/setup-graphify.js"
|
|
17
17
|
},
|
|
18
18
|
"license": "MIT",
|
|
19
19
|
"dependencies": {
|
package/src/install/daemon.js
CHANGED
|
@@ -80,7 +80,7 @@ export function buildPowerShellCmd({ nodePath, daemonJs }) {
|
|
|
80
80
|
$action = New-ScheduledTaskAction -Execute '${escapedNodePath}' -Argument '"${escapedDaemonJs}"'
|
|
81
81
|
$trigger = New-ScheduledTaskTrigger -AtLogOn
|
|
82
82
|
$settings = New-ScheduledTaskSettingsSet -ExecutionTimeLimit 0 -RestartCount 3 -RestartInterval (New-TimeSpan -Minutes 1)
|
|
83
|
-
Register-ScheduledTask -TaskName 'Urban' -Action $action -Trigger $trigger -Settings $settings -
|
|
83
|
+
Register-ScheduledTask -TaskName 'Urban' -Action $action -Trigger $trigger -Settings $settings -Force
|
|
84
84
|
`;
|
|
85
85
|
}
|
|
86
86
|
|