-
Notifications
You must be signed in to change notification settings - Fork 74
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: support modify bundle name #499
Closed
Closed
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
96a6400
fix: lose create element module in rax component (#495)
luhc228 6ac1c8c
fix: add suffix / (#494)
HomyeeKing a689b9d
feat: support modify bundle name
luhc228 08d2cf1
docs: add filename
luhc228 c533b76
chore: changeset
luhc228 33f4c70
docs: add types check and hint in markdown (#508)
luhc228 58a7b87
fix: can not render two components in one mdx file (#510)
luhc228 c9c4d46
fix: some es2017 syntaxs are not compatible with sarafi 10.1 (#506)
luhc228 8cd4c98
feat: support modify swc compile options (#514)
luhc228 84a7a30
Merge branch 'release-next' into feat/support-modify-bundle-name
luhc228 8baec24
chore: remove changeset
luhc228 e600d33
fix: mobile preview style (#525)
luhc228 81012f8
Merge branch 'release-next' into feat/support-modify-bundle-name
luhc228 c4bc0fe
chore: remove changeset
luhc228 25529f4
chore: update lock
luhc228 3c18757
chore: update lock
luhc228 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,5 @@ | ||
--- | ||
'@ice/pkg': patch | ||
--- | ||
|
||
feat: support modify bundle name |
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,30 @@ | ||
--- | ||
sidebar_label: 用法 | ||
--- | ||
|
||
本 Demo 演示一行文字的用法。 | ||
|
||
```tsx preview | ||
import * as React from 'react'; | ||
import Component from 'example-pkg-react-component'; | ||
|
||
export default function App () { | ||
return ( | ||
<Component /> | ||
) | ||
} | ||
``` | ||
|
||
```tsx preview | ||
import * as React from 'react'; | ||
import Component from 'example-pkg-react-component'; | ||
|
||
export default function App () { | ||
return ( | ||
<> | ||
<h1>I am Component</h1> | ||
<Component /> | ||
</> | ||
) | ||
} | ||
``` |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
这里会是函数吗? 考虑不同 task 下参数不同的情况