Skip to content

Commit af6e8fe

Browse files
committed
logs
1 parent b4be97d commit af6e8fe

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

dist/main.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1588,6 +1588,8 @@ function get_content_and_filename(
15881588
base,
15891589
filename
15901590
) {
1591+
console.log(filename, filename.replace(/^@sveltejs\//, ""));
1592+
console.log("\n");
15911593
return new Promise(async (rs, rj) => {
15921594
try {
15931595
const content = await fs$1.promises.readFile(path__namespace.join(base, filename), fs_opts);

src/fs/get_content.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ function get_content_and_filename(
1313
base: string,
1414
filename: string
1515
): Promise<[string, string]> {
16+
console.log(filename, filename.replace(/^@sveltejs\//, ""));
17+
console.log("\n");
1618
return new Promise(async (rs, rj) => {
1719
try {
1820
const content = await fs.readFile(path.join(base, filename), fs_opts);

0 commit comments

Comments
 (0)