@beesolve/cdk-constructs 0.1.8 → 0.1.9
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/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -201,7 +201,7 @@ class Nodejs24Function extends Function {
|
|
|
201
201
|
} = props;
|
|
202
202
|
const outDir = resolve(`${cwd()}/cdk.out/bundling.${id}.beesolve-nodejs.${Date.now()}`);
|
|
203
203
|
const buildResult = buildSync({
|
|
204
|
-
entryPoints: [entry],
|
|
204
|
+
entryPoints: [`${cwd()}/${entry}`],
|
|
205
205
|
banner: {
|
|
206
206
|
js: `/* CommonJS polyfills */import { fileURLToPath } from 'node:url';import { createRequire } from 'node:module';const __filename = fileURLToPath(import.meta.url);const __dirname = fileURLToPath(new URL('.', import.meta.url));const require = createRequire(import.meta.url);/* end of CommonJS polyfills */`
|
|
207
207
|
},
|