8000 [feat] adapter module by ignatiusmb · Pull Request #2285 · sveltejs/kit · GitHub
[go: up one dir, main page]

Skip to content

[feat] adapter module #2285

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 26 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
cbfd2cf
create proxy for adapters to import from
ignatiusmb Aug 25, 2021
f94fbe8
adapter ambient module
ignatiusmb Aug 25, 2021
11b99fc
adapter node sync
ignatiusmb Aug 25, 2021
8fde219
update constants
ignatiusmb Aug 25, 2021
f9bff84
add to exports
ignatiusmb Aug 25, 2021
09d007c
promisify module export types
ignatiusmb Aug 25, 2021
a76784b
properly type default export
ignatiusmb Aug 25, 2021
17a9bbe
shorter namings
ignatiusmb Aug 25, 2021
409b239
revert some paths
ignatiusmb Aug 25, 2021
09cf6a9
Merge branch 'master' of https://github.com/sveltejs/kit into adapter…
ignatiusmb Aug 25, 2021
6f50f5b
tidy up imports
ignatiusmb Sep 2, 2021
b07e677
@sveltejs/esbuild-plugin-app-resolver
ignatiusmb Sep 2, 2021
f069539
allow importing app output from @sveltejs/kit/app
ignatiusmb Sep 2, 2021
61741f1
Merge branch 'master' of https://github.com/sveltejs/kit into adapter…
ignatiusmb Sep 2, 2021
4abc0a2
resolve merges
ignatiusmb Sep 2, 2021 8000
6cb5be2
use appResolver for adapter-node
ignatiusmb Sep 2, 2021
8fd0c4c
update adapter api docs
ignatiusmb Sep 2, 2021
e0602fc
lockfile
ignatiusmb Sep 2, 2021
e84a688
adapter node tests
ignatiusmb Sep 2, 2021
fa20353
revert constants changes
ignatiusmb Sep 2, 2021
88d541a
remove promise wrapper from types
ignatiusmb Sep 2, 2021
e1af57c
update rest of adapter import paths
ignatiusmb Sep 2, 2021
d44975b
remove accidental type as callback
ignatiusmb Sep 2, 2021
9dff930
some wording
ignatiusmb Sep 3, 2021
9ab01b5
Merge branch 'master' into adapter-module
ignatiusmb Sep 13, 2021
15f6149
fix merge conflict
ignatiusmb Sep 13, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8000
Prev Previous commit
Next Next commit
Merge branch 'master' of https://github.com/sveltejs/kit into adapter…
…-module
  • Loading branch information
ignatiusmb committed Aug 25, 2021
commit 09cf6a9253e4eb11e22a659a1ee51a2ec451bfea
5 changes: 4 additions & 1 deletion packages/kit/src/core/adapt/prerender.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
import { readFileSync, writeFileSync } from 'fs';
import { dirname, join, resolve as resolve_path } from 'path';
import { pathToFileURL, resolve, URL } from 'url';
import { mkdirp } from '../../utils/filesystem.js';

import { __fetch_polyfill } from '../../install-fetch.js';
import { mkdirp } from '../../utils/filesystem.js';
import { get_single_valued_header } from '../../utils/http.js';

import { SERVER_OUTPUT } from '../constants.js';

/**
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.
0