Skip to content

Commit

Permalink
Update FileSystem
Browse files Browse the repository at this point in the history
  • Loading branch information
heimdallrj authored and thinkholic committed Aug 11, 2020
1 parent 800caac commit 6a9e521
Show file tree
Hide file tree
Showing 22 changed files with 29 additions and 2 deletions.
File renamed without changes.
1 change: 1 addition & 0 deletions src/components/Button/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from './Button';
File renamed without changes.
1 change: 1 addition & 0 deletions src/components/Card/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from './Card';
File renamed without changes.
1 change: 1 addition & 0 deletions src/components/Checkbox/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from './Checkbox';
File renamed without changes.
1 change: 1 addition & 0 deletions src/components/File/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from './File';
File renamed without changes.
1 change: 1 addition & 0 deletions src/components/Image/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from './Image';
File renamed without changes.
1 change: 1 addition & 0 deletions src/components/Input/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export {default} from './Input';
File renamed without changes.
1 change: 1 addition & 0 deletions src/components/Radio/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from './Radio';
File renamed without changes.
1 change: 1 addition & 0 deletions src/components/Select/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from './Select';
File renamed without changes.
1 change: 1 addition & 0 deletions src/components/Textarea/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from './Textarea';
File renamed without changes.
1 change: 1 addition & 0 deletions src/components/Typography/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from './Typography';
10 changes: 9 additions & 1 deletion src/components/index.js
Original file line number Diff line number Diff line change
@@ -1 +1,9 @@
export { default } from './Button';
export { default as Button } from './Button';
export { default as Card } from './Card';
export { default as Checkbox } from './Checkbox';
export { default as File } from './File';
export { default as Image } from './Image';
export { default as Input } from './Input';
export { default as Select } from './Select';
export { default as Textarea } from './Textarea';
export { default as Typography } from './Typography';
11 changes: 10 additions & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,16 @@ module.exports = {
utils: './utils/index.js',
createContext: './utils/createContext.js',
components: './components/index.js',
Button: './components/Button/index.jsx',
Button: './components/Button/index.js',
Card: './components/Card/index.js',
Checkbox: './components/Checkbox/index.js',
File: './components/File/index.js',
Image: './components/Image/index.js',
Input: './components/Input/index.js',
Radio: './components/Radio/index.js',
Select: './components/Select/index.js',
Textarea: './components/Textarea/index.js',
Typography: './components/Typography/index.js',
},
output: {
path: path.resolve(__dirname, 'dist'),
Expand Down

0 comments on commit 6a9e521

Please sign in to comment.