Skip to content

Commit

Permalink
fixup! CHE-10883 migrate from bower to yarn
Browse files Browse the repository at this point in the history
  • Loading branch information
olexii4 committed Sep 25, 2018
1 parent 61f9161 commit 98733d3
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
20 changes: 12 additions & 8 deletions dashboard/gulp/styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,16 @@ gulp.task('styles', function () {
.pipe(gulp.dest(path.join(conf.paths.tmp, '/serve/app/')))
.pipe(browserSync.reload({ stream: true }));

var css = gulp.src([
path.join('node_modules/angular-material/**/*.css'),
])
.pipe(concat('css-files.css'));

return merge(stylCss, css)
.pipe(gulp.dest(path.join(conf.paths.tmp, '/serve/app/')))
.pipe(browserSync.reload({ stream: true }));
var css = gulp.src([
path.join('node_modules/angular-material/**/*.css'),
path.join('node_modules/codemirror/lib/codemirror.css'),
path.join('node_modules/codemirror/addon/lint/lint.css'),
path.join('node_modules/codemirror/addon/fold/foldgutter.css'),
path.join('node_modules/font-awesome/css/font-awesome.min.css')
])
.pipe(concat('css-files.css'));

return merge(stylCss, css)
.pipe(gulp.dest(path.join(conf.paths.tmp, '/serve/app/')))
.pipe(browserSync.reload({stream: true}));
});
4 changes: 0 additions & 4 deletions dashboard/src/app/index.styl
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
@import '../../node_modules/codemirror/lib/codemirror.css';
@import '../../node_modules/codemirror/addon/lint/lint.css';
@import '../../node_modules/codemirror/addon/fold/foldgutter.css';
@import '../../node_modules/font-awesome/css/font-awesome.css';
@import '../../node_modules/bootstrap-styl/bootstrap/index.styl'
@import '../components/widget'
@import 'colors/che-colors.styl'
Expand Down

0 comments on commit 98733d3

Please sign in to comment.