@beesolve/cdk-constructs 0.1.6 → 0.1.7
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 +3 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -182,6 +182,7 @@ import {
|
|
|
182
182
|
} from "aws-cdk-lib/aws-logs";
|
|
183
183
|
import { buildSync } from "esbuild";
|
|
184
184
|
import { execSync } from "node:child_process";
|
|
185
|
+
import { resolve } from "node:path";
|
|
185
186
|
var __dirname = "/Users/ivan/data/work/github.com/beesolve/p/packages/packages/cdk-constructs/src";
|
|
186
187
|
|
|
187
188
|
class Nodejs24Function extends Function {
|
|
@@ -198,7 +199,8 @@ class Nodejs24Function extends Function {
|
|
|
198
199
|
revision = true,
|
|
199
200
|
...rest
|
|
200
201
|
} = props;
|
|
201
|
-
const outDir = `${__dirname}/cdk.out/bundling.${id}.beesolve-nodejs.${Date.now()}
|
|
202
|
+
const outDir = resolve(`${__dirname}/cdk.out/bundling.${id}.beesolve-nodejs.${Date.now()}`);
|
|
203
|
+
console.log({ outDir });
|
|
202
204
|
const buildResult = buildSync({
|
|
203
205
|
entryPoints: [entry],
|
|
204
206
|
banner: {
|