triflux 4.2.2 → 4.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/bin/triflux.mjs +1 -1
- package/hub/team/pane.mjs +1 -0
- package/package.json +1 -1
package/bin/triflux.mjs
CHANGED
|
@@ -2441,7 +2441,7 @@ async function main() {
|
|
|
2441
2441
|
case "nr": {
|
|
2442
2442
|
const scriptPath = join(PKG_ROOT, "scripts", "notion-read.mjs");
|
|
2443
2443
|
try {
|
|
2444
|
-
execFileSync(process.execPath, [scriptPath, ...cmdArgs], { stdio: "inherit", timeout: 660000 });
|
|
2444
|
+
execFileSync(process.execPath, [scriptPath, ...cmdArgs], { stdio: "inherit", timeout: 660000, windowsHide: true });
|
|
2445
2445
|
} catch (e) {
|
|
2446
2446
|
throw createCliError(e.message || "notion-read 실행 실패", {
|
|
2447
2447
|
exitCode: e.status || EXIT_ERROR,
|
package/hub/team/pane.mjs
CHANGED