-
Notifications
You must be signed in to change notification settings - Fork 781
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,11 +45,11 @@ gulp.task('prod', ['umdBuild'], function() { | |
gulp.src('./css/react-bootstrap-table.css') | ||
.pipe(concatCss("./react-bootstrap-table.min.css")) | ||
.pipe(cssmin()) | ||
.pipe(gulp.dest('./css')); | ||
.pipe(gulp.dest('./dist')); | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
AllenFang
Author
Owner
|
||
gulp.src(['./css/react-bootstrap-table.css', './css/toastr.css']) | ||
.pipe(concatCss('./react-bootstrap-table-all.min.css')) | ||
.pipe(cssmin()) | ||
.pipe(gulp.dest('./css')); | ||
.pipe(gulp.dest('./dist')); | ||
}); | ||
|
||
// build umd bundles for https://npmcdn.com/ and for browser <script> tag | ||
|
2 comments
on commit ffb8031
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.
So does this mean we don't need to do any custom @import 'react-bootstrap-table/dist/react-bootstrap-table.min.css';
and this is done automatically now? Because when I include it, none of your props like bordered={true}
seem to have any effect.
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.
@jflayhart , no, you still need to include the css, I just change the file path of css files.
How can you change such a dramatic thing without any documentation!