-
Notifications
You must be signed in to change notification settings - Fork 648
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9ee03e0
commit cdf0c11
Showing
2 changed files
with
4 additions
and
3 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 |
---|---|---|
|
@@ -21,7 +21,7 @@ below. | |
| Fresh version | Preact | preact-render-to-string | Deno | | ||
| ------------- | ---------------- | ----------------------- | --------- | | ||
| 1.0.0-1.0.2 | >=10.8.1 <11.0.0 | >=5.2.0 <6.0.0 | >= 1.23.0 | | ||
| 1.1.0-1.1.1 | >=10.8.1 <11.0.0 | >=5.2.0 <6.0.0 | >= 1.25.0 | | ||
| 1.1.0-1.1.2 | >=10.8.1 <11.0.0 | >=5.2.0 <6.0.0 | >= 1.25.0 | | ||
|
||
## Updating dependencies | ||
|
||
|
@@ -51,14 +51,14 @@ You will be prompted to confirm the changes that will be made to your project. | |
To manually update your project's dependencies, you can edit the | ||
`import_map.json` file in the root of your projects directory. Dependency | ||
versions are encoded into the URLs in this file. For example, here is how to | ||
update a project from Fresh 1.0.2 to 1.1.1, and update Preact to the latest | ||
update a project from Fresh 1.0.2 to 1.1.2, and update Preact to the latest | ||
version: | ||
|
||
```diff | ||
{ | ||
"imports": { | ||
- "$fresh/": "https://deno.land/x/[email protected]/", | ||
+ "$fresh/": "https://deno.land/x/[email protected].1/", | ||
+ "$fresh/": "https://deno.land/x/[email protected].2/", | ||
|
||
- "preact": "https://esm.sh/[email protected]", | ||
- "preact/": "https://esm.sh/[email protected]/", | ||
|
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 @@ | ||
[ | ||
"1.1.2", | ||
"1.1.1", | ||
"1.1.0", | ||
"1.0.2", | ||
|