Skip to content

Commit 9f2efe0

Browse files
chore: Add logs
1 parent 96da83c commit 9f2efe0

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,9 +148,10 @@
148148
"test/cdk-config",
149149
"test/sls-basic",
150150
"test/sls-esbuild",
151+
"test/sls-esbuild-cjs",
151152
"test/osls-basic",
152153
"test/osls-esbuild",
153-
"test/sls-esbuild-cjs",
154+
"test/osls-esbuild-cjs",
154155
"test/sam-basic",
155156
"test/sam-alt",
156157
"test/terraform-basic"

prepareForTest.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@ async function modifyPackageJson(testCase) {
1616

1717
// Write the modified package.json back to the file
1818
await writeFile(filePath, JSON.stringify(packageJson, null, 2), 'utf-8');
19-
console.log(`Modified ${filePath} successfully!`);
19+
console.log(
20+
`Modified ${filePath} successfully!`,
21+
JSON.stringify(packageJson, null, 2),
22+
);
2023
}
2124

2225
// Run the function with the provided file path and argument

0 commit comments

Comments
 (0)