-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4948 from alibaba/fix/ssg-render-error
fix: ssg render error
- Loading branch information
Showing
9 changed files
with
26 additions
and
14 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,6 +1,6 @@ | ||
{ | ||
"name": "ice.js", | ||
"version": "2.2.1", | ||
"version": "2.2.2", | ||
"description": "command line interface and builtin plugin for icejs", | ||
"author": "[email protected]", | ||
"homepage": "", | ||
|
@@ -32,7 +32,7 @@ | |
"build-plugin-ice-mpa": "2.0.1", | ||
"build-plugin-ice-request": "2.0.0", | ||
"build-plugin-ice-router": "2.0.3", | ||
"build-plugin-ice-ssr": "3.0.2", | ||
"build-plugin-ice-ssr": "3.0.3", | ||
"build-plugin-ice-store": "2.0.5", | ||
"build-plugin-react-app": "2.0.4", | ||
"build-plugin-pwa": "1.0.1", | ||
|
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "build-plugin-ice-ssr", | ||
"version": "3.0.2", | ||
"version": "3.0.3", | ||
"description": "ssr plugin", | ||
"author": "[email protected]", | ||
"homepage": "", | ||
|
@@ -32,7 +32,7 @@ | |
"fs-extra": "^8.1.0", | ||
"html-minifier": "^4.0.0", | ||
"parseurl": "^1.3.3", | ||
"path-to-regexp": "^1.7.0", | ||
"@ice/runtime": "^0.1.0", | ||
"query-string": "^6.13.7" | ||
} | ||
} |
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
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,5 +1,9 @@ | ||
# Changelog | ||
|
||
## 0.1.1 | ||
|
||
- [feat] add `[email protected]` dependency | ||
|
||
## 0.1.0 | ||
|
||
- [feat] dependency of axios and utils for axios |
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 |
---|---|---|
@@ -1,7 +1,9 @@ | ||
import axios from 'axios'; | ||
import * as pathToRegexp from 'path-to-regexp'; | ||
import axiosUtils from './axiosUtils'; | ||
|
||
export { | ||
axios, | ||
axiosUtils, | ||
pathToRegexp | ||
}; |
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 |
---|---|---|
|
@@ -12935,7 +12935,7 @@ [email protected]: | |
resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" | ||
integrity sha1-32BBeABfUi8V60SQ5yR6G/qmf4w= | ||
|
||
path-to-regexp@^1.7.0: | ||
path-to-regexp@^1.7.0, path-to-regexp@^1.8.0: | ||
version "1.8.0" | ||
resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-1.8.0.tgz#887b3ba9d84393e87a0a0b9f4cb756198b53548a" | ||
integrity sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA== | ||
|