collabdocchat 2.4.6 → 2.4.7

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.
Files changed (2) hide show
  1. package/bin/cli.js +1 -1
  2. package/package.json +1 -1
package/bin/cli.js CHANGED
@@ -34,7 +34,7 @@ const npmCmd = isWindows ? 'npm.cmd' : 'npm';
34
34
  const startProcess = spawn(npmCmd, ['start'], {
35
35
  cwd: rootDir,
36
36
  stdio: 'inherit',
37
- shell: false
37
+ shell: isWindows // Windows 需要 shell
38
38
  });
39
39
 
40
40
  startProcess.on('error', (error) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "collabdocchat",
3
- "version": "2.4.6",
3
+ "version": "2.4.7",
4
4
  "description": "开源的实时协作文档聊天平台 - 集成任务管理、多人文档编辑、智能点名功能",
5
5
  "main": "./server/index.js",
6
6
  "type": "module",