Skip to content

Commit

Permalink
moar linter fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeed committed Nov 17, 2021
1 parent 1276a72 commit c4eceb0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions packages/adapter-cloudflare/files/worker.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* global ASSETS */
import { init, render } from '../output/server/app.js';

init();
Expand Down
5 changes: 3 additions & 2 deletions packages/adapter-cloudflare/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { join } from 'path';
import { fileURLToPath } from 'url';
import { readFileSync, writeFileSync, mkdirSync } from 'fs';
import { readFileSync, writeFileSync } from 'fs';
import * as esbuild from 'esbuild';

/**
Expand All @@ -23,7 +23,8 @@ export default function (options = {}) {
.map((f) => f.replace(`${target_dir}/`, ''));

// returns nothing, very sad
const prerendered = await utils.prerender({
// TODO(future) get/save output
await utils.prerender({
dest: `${target_dir}/`
});

Expand Down

0 comments on commit c4eceb0

Please sign in to comment.