-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs(blog): added note about bug related to missing package files
- Loading branch information
Showing
2 changed files
with
6 additions
and
1 deletion.
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
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 |
---|---|---|
|
@@ -14,6 +14,8 @@ image: https://images.unsplash.com/photo-1429743305873-d4065c15f93e | |
|
||
|
||
|
||
|
||
|
||
import BrowserWindow from '@site/src/components/BrowserWindow'; | ||
|
||
![Two paths inside a forest!](https://images.unsplash.com/photo-1429743305873-d4065c15f93e) | ||
|
@@ -27,9 +29,11 @@ my packages as `@h4ad/serverless-adapter/adapters/aws`. | |
You can use it by installing the new version: | ||
|
||
```bash | ||
npm i @h4ad/[email protected].0 | ||
npm i @h4ad/[email protected].1 | ||
``` | ||
|
||
> The version 4.0.0 was released with a bug that didn't include the package files, so I released the version 4.0.1 to fix this issue. | ||
In the previous version, since I only export to `commonjs`, you need to import the files as `/lib/adapters/aws`, which is not bad, but not exactly good. | ||
This was necessary because I can't export all files in the default `export` as this will lead you to install all frameworks supported by this library. | ||
|
||
|