@artilleryio/int-core 2.27.0-67648ae → 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.
@@ -0,0 +1,4 @@
1
+
2
+ > @artilleryio/int-core@2.28.0-2c19512 build
3
+ > tsc -p tsconfig.build.json
4
+
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";