@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clazic/urban",
3
- "version": "0.2.1",
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": "sh -c 'cd node_modules/better-sqlite3 && npx node-gyp rebuild --release' 2>/dev/null || true; node scripts/setup-graphify.js"
16
+ "postinstall": "node scripts/setup-graphify.js"
17
17
  },
18
18
  "license": "MIT",
19
19
  "dependencies": {
@@ -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 -RunLevel Highest -Force
83
+ Register-ScheduledTask -TaskName 'Urban' -Action $action -Trigger $trigger -Settings $settings -Force
84
84
  `;
85
85
  }
86
86