yedra 0.12.11 → 0.12.12

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.
@@ -43,7 +43,6 @@ export class Yedra {
43
43
  }
44
44
  async static(dir, fallback) {
45
45
  const files = await readdir(dir, { recursive: true });
46
- console.log(files);
47
46
  await Promise.all(files.map(async (file) => {
48
47
  const absolute = join(dir, file);
49
48
  if (!(await stat(absolute)).isFile()) {
@@ -62,7 +61,6 @@ export class Yedra {
62
61
  mime: mime.getType(extname(fallback)) ?? 'application/octet-stream',
63
62
  });
64
63
  }
65
- console.log(this.staticFiles);
66
64
  }
67
65
  /**
68
66
  * Handle an HTTP request.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yedra",
3
- "version": "0.12.11",
3
+ "version": "0.12.12",
4
4
  "repository": "github:0codekit/yedra",
5
5
  "main": "dist/index.js",
6
6
  "devDependencies": {