@primero-ai/temporal-graph-tools 1.1.2 → 1.1.3
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/dist/src/bundler.js +1 -1
- package/package.json +1 -1
package/dist/src/bundler.js
CHANGED
|
@@ -99,7 +99,7 @@ async function bundleActivitiesWithEsbuild(bundles, options = {}) {
|
|
|
99
99
|
throw new Error('bundleActivities requires at least one entrypoint.');
|
|
100
100
|
}
|
|
101
101
|
const filename = ((_b = options.filename) !== null && _b !== void 0 ? _b : 'activities.bundle.mjs').trim();
|
|
102
|
-
const externals = new Set(['@swc/*']);
|
|
102
|
+
const externals = new Set(['@primero-ai/temporal-graph-tools', '@swc/*']);
|
|
103
103
|
((_c = options.externals) !== null && _c !== void 0 ? _c : []).forEach((name) => {
|
|
104
104
|
if (typeof name === 'string' && name.trim().length > 0) {
|
|
105
105
|
externals.add(name.trim());
|
package/package.json
CHANGED