@nxtedition/lib 23.12.2 → 23.13.0
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/couch.js +2 -2
- package/package.json +1 -1
- package/util/template/index-web.d.ts +1 -0
- package/util/template/index-web.js +4 -2
package/couch.js
CHANGED
|
@@ -1057,8 +1057,8 @@ class PromiseOutput {
|
|
|
1057
1057
|
}
|
|
1058
1058
|
|
|
1059
1059
|
const defaultDispatcher = new Agent({
|
|
1060
|
-
pipelining: 4,
|
|
1061
|
-
connections: 8,
|
|
1060
|
+
// pipelining: 4,
|
|
1061
|
+
connections: 8 * 4,
|
|
1062
1062
|
connectTimeout: 2e3,
|
|
1063
1063
|
})
|
|
1064
1064
|
const blockingDispatcher = new Agent({
|
package/package.json
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
|
-
import
|
|
1
|
+
import _init from '@swc/wasm-web'
|
|
2
2
|
import { makeTemplateCompiler as commonMakeTemplateCompiler } from './index-common.js'
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
export async function init() {
|
|
5
|
+
await _init()
|
|
6
|
+
}
|
|
5
7
|
|
|
6
8
|
export function makeTemplateCompiler({ ds, proxify, logger = console }) {
|
|
7
9
|
return commonMakeTemplateCompiler({
|