@artilleryio/int-core 2.27.0 → 2.28.0-2c19512
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/.turbo/turbo-build.log +4 -0
- package/dist/index.js +13 -0
- package/dist/lib/engine_http.js +817 -0
- package/dist/lib/engine_socketio.js +347 -0
- package/dist/lib/engine_ws.js +278 -0
- package/dist/lib/is-idle-phase.js +9 -0
- package/dist/lib/phases.js +213 -0
- package/dist/lib/readers.js +58 -0
- package/dist/lib/runner.js +463 -0
- package/dist/lib/ssms.js +555 -0
- package/dist/lib/update-global-object.js +75 -0
- package/dist/lib/weighted-pick.js +54 -0
- package/index.ts +14 -0
- package/lib/{engine_http.js → engine_http.ts} +28 -28
- package/lib/{engine_socketio.js → engine_socketio.ts} +13 -11
- package/lib/{engine_ws.js → engine_ws.ts} +16 -10
- package/lib/{is-idle-phase.js → is-idle-phase.ts} +1 -3
- package/lib/{phases.js → phases.ts} +12 -10
- package/lib/{readers.js → readers.ts} +2 -4
- package/lib/{runner.js → runner.ts} +84 -69
- package/lib/{ssms.js → ssms.ts} +18 -18
- package/{index.js → lib/update-global-object.ts} +9 -14
- package/lib/{weighted-pick.js → weighted-pick.ts} +7 -3
- package/package.json +10 -17
- package/tsconfig.build.json +9 -0
- package/types.d.ts +12 -0
package/dist/index.js
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// IMPORTANT: this file must stay free of TypeScript-only syntax
|
|
2
|
+
// (annotations, casts). It is the package entry that CommonJS
|
|
3
|
+
// consumers reach via require(); require-extension hooks (e.g.
|
|
4
|
+
// pirates via @tapjs/processinfo) bypass Node's native type
|
|
5
|
+
// stripping for directly-required files. Erasure-identical source
|
|
6
|
+
// keeps the entry loadable everywhere; everything imported from it
|
|
7
|
+
// loads through the ESM loader, where stripping always applies.
|
|
8
|
+
export { default as engine_http } from "./lib/engine_http.js";
|
|
9
|
+
export { default as isIdlePhase } from "./lib/is-idle-phase.js";
|
|
10
|
+
export * as runner from "./lib/runner.js";
|
|
11
|
+
export * as ssms from "./lib/ssms.js";
|
|
12
|
+
// Side effect: sets up the global artillery object on load
|
|
13
|
+
export { updateGlobalObject } from "./lib/update-global-object.js";
|