Skip to content

Commit

Permalink
Merge pull request #78 from serverless-guru/develop
Browse files Browse the repository at this point in the history
release alpha8
  • Loading branch information
bboure authored Dec 23, 2023
2 parents 2c1222b + b2dc572 commit b5901ea
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@
},
"author": "Serverless Guru LLC",
"license": "ISC",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.2",
"@types/aws-lambda": "^8.10.101",
Expand Down
5 changes: 1 addition & 4 deletions src/infrastructure/stack-manager/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,10 +90,7 @@ export const deployStack = (params: {
`config=${config}`,
];

const { error, status, stderr } = spawnSync('npx', args, {
// Run CDK in the context of the sls-jest
cwd: __dirname,
});
const { error, status, stderr } = spawnSync('npx', args);

if (status !== 0 || error) {
if (error) {
Expand Down

0 comments on commit b5901ea

Please sign in to comment.