-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* initial implementation of SSR pages * update status * explicitely opt-in to esbuild * delete hardcoded netlify directory * ignore netlify folder * adopt patched v0.29.0-alpha.0 version of greenwood * fix hardcoded import in output format template * segment each API function with a folder and root index.js * output package.json with module type flag for SSR pages * generate a zip for custom functions build * custom zip implementation for SSR pages * remove netlify directory from build output * create zip inside netlify folder * only output a zip file in netlify output dir * commit simpler template output format * commit simpler template output format * re-enable esbuild bundler in netlify.toml * rename SSR page output after function name * disable esbuild processing * add back package.json * restore template format output * code cleanup * update README status * get API routes outputting correctly * move API adapter output to root of functions folder * have API output entry point match route URL * fix typo on netlify.toml redirect * test dynamic splat redirecting for API routes in netlify.toml * clean up code comments * upgrade greenwood v0.29.0-alpha.1 * update compat table in README * sync with latest upstream adapter implementation * sync with latest upstream adapter implementation * Adapter plugin toml file (#5) * auto generate _redirects * use correct format for _redirects file * update README TODOs * redirects should be rewrites instead * clarify caveats and features * update latest netlify-cli version
- Loading branch information
1 parent
f1feaab
commit 31bc9ae
Showing
14 changed files
with
9,388 additions
and
26,104 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
.greenwood/ | ||
.netlify/ | ||
netlify | ||
node_modules/ | ||
public/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
legacy-peer-deps=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import { greenwoodPluginAdapterNetlify } from '@greenwood/plugin-adapter-netlify'; | ||
|
||
export default { | ||
plugins: [ | ||
greenwoodPluginAdapterNetlify() | ||
] | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.