Skip to content

Commit

Permalink
refactor(project): update .npmignore and update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
janryWang committed Mar 27, 2019
1 parent 8b19a92 commit 90c4fa4
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@
- [<FormBlock/>](./API/FormBlock.md)
- [<FormItemGrid/>](./API/FormItemGrid.md)
- [<FormSlot/>](./API/FormSlot.md)
- [PlayGround](../packages/builder-next/lib/index.js)
- [PlayGround](../packages/builder-next/src/index.js)
1 change: 1 addition & 0 deletions packages/antd/.npmignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
node_modules
*.log
build
__tests__
1 change: 1 addition & 0 deletions packages/builder-next/.npmignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
node_modules
*.log
build
__tests__
6 changes: 1 addition & 5 deletions packages/builder-next/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -131,11 +131,7 @@ class Component extends React.Component {
}

render() {
return (
<div style={{ marginTop: -20 }}>
<Builder {...props} schema={this.state.schema} />
</div>
)
return <Builder {...props} schema={this.state.schema} />
}
}

Expand Down
4 changes: 3 additions & 1 deletion packages/builder/.npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,6 @@ config
public
scripts
*.log
src/demo
src/demo
build
__tests__
1 change: 1 addition & 0 deletions packages/core/.npmignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
node_modules
*.log
build
__tests__
4 changes: 4 additions & 0 deletions packages/next/.npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
node_modules
*.log
build
__tests__
1 change: 1 addition & 0 deletions packages/react/.npmignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
node_modules
*.log
build
__tests__
1 change: 1 addition & 0 deletions packages/utils/.npmignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
node_modules
*.log
build
__tests__
1 change: 1 addition & 0 deletions packages/validator/.npmignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
node_modules
*.log
build
__tests__

0 comments on commit 90c4fa4

Please sign in to comment.