-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This requires a change of the http request lib. Now nodesi uses a native fetch, or you can provide your own http client implementation. Previously nodesi used good-guy-http, which is no longer maintained, so the change in the behavior is that nodesi does not provide a cache out of the box. good-guy-http came with the in-memory cache that respected Cache-Control headers, but the new native fetch implementation does not provide this feature. BREAKING CHANGE: change in the default http request library
- Loading branch information
1 parent
3978d8b
commit ce77d63
Showing
11 changed files
with
1,016 additions
and
1,261 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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[*.js] | ||
indent_style = space | ||
indent_size = 4 | ||
quote_type = single |
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 |
---|---|---|
|
@@ -10,3 +10,4 @@ test | |
.jshintrc | ||
.travis.yml | ||
.nvmrc | ||
.editorconfig |
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
Oops, something went wrong.