Skip to content

Commit

Permalink
2.5.10
Browse files Browse the repository at this point in the history
  • Loading branch information
noear committed Jul 23, 2024
1 parent a32bd89 commit 65c352a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
3 changes: 3 additions & 0 deletions javascript/ LOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### 2.5.10
* 添加 websocket 子协议验证开关控制

### 2.5.6
* 强化 EntityDefault::dataSet 方法,支持 Buffer 传入
* 强化 Session::sendAlarm 支持 Entity 传入
Expand Down
4 changes: 2 additions & 2 deletions javascript/socketd/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ module.exports = {
},
output: {
// 把所有依赖的模块合并输出到一个 bundle.js 文件
filename: 'socket.d.esm.js', //window -> socket.d.js // module->socket.d.esm.js (要去掉最后的 r as __esModule)
filename: 'socket.d.js', //window -> socket.d.js // module->socket.d.esm.js (要去掉最后的 r as __esModule)
// 输出文件都放到 dist 目录下
path: path.resolve(__dirname, './dist/release'),
libraryTarget: 'module'//'commonjs2' //module //window //global//this(更通用)
libraryTarget: 'window'//'commonjs2' //module //window //global//this(更通用)
}
}
3 changes: 3 additions & 0 deletions python/LOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### 2.5.10
* 添加 websocket 子协议验证开关控制

### 2.5.6
* 优化 Session::send_alarm 申明,支持 alarm: str|Entity

Expand Down

0 comments on commit 65c352a

Please sign in to comment.