Skip to content

Commit

Permalink
Try to allow copying dist
Browse files Browse the repository at this point in the history
  • Loading branch information
RobbieTheWagner committed Jul 3, 2018
1 parent 4a65147 commit 18dbb9f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 80 deletions.
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,4 @@
node_modules/
bower_components/
.DS_Store
.idea
dist/
.idea
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ node_js:
- '10'
cache: yarn
install: yarn
script:
before_script:
- yarn lint
after_success:
script:
- yarn build
deploy:
- provider: npm
Expand Down
74 changes: 0 additions & 74 deletions docs/ocean.css

This file was deleted.

5 changes: 3 additions & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,8 @@ gulp.task('css:docs', function() {
.pipe(gulp.dest('./docs/welcome/css'));
});

gulp.task('docs', ['css:docs', 'markdown:docs']);

// Make a copy of popper available to those not using bundling
gulp.task('copy-popper', function() {
gulp.src('./node_modules/popper.js/dist/umd/popper.js')
Expand Down Expand Up @@ -127,7 +129,6 @@ gulp.task('watch', ['js', 'css', 'eager'], function() {


// Defaults
gulp.task('build', ['js', 'css', 'eager', 'copy-popper']);
gulp.task('docs', ['css:docs', 'markdown:docs']);
gulp.task('build', ['js', 'css', 'eager', 'copy-popper', 'docs']);
gulp.task('default', ['build']);

0 comments on commit 18dbb9f

Please sign in to comment.