Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mass update of all dependencies #171

Draft
wants to merge 3 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ const karma = require('karma');
//////////////////////////
// for minified version
// js: using uglify for now.
const uglify = require('gulp-uglify');
//const uglify = require('gulp-uglify');
var uglify = require('gulp-uglify-es').default;
// var closure = require('google-closure-compiler').gulp();
// var sourcemaps = require('gulp-sourcemaps');
const csso = require('gulp-csso');
Expand Down Expand Up @@ -243,8 +244,8 @@ function vendor_other_bootstrap(cb) {

function vendor_other_bootstrap(cb) {
gulp.src([
'node_modules/angular-ui-grid/ui-grid.woff',
'node_modules/angular-ui-grid/ui-grid.ttf'
'node_modules/angular-ui-grid/fonts/ui-grid.woff',
'node_modules/angular-ui-grid/fonts/ui-grid.ttf'
], {base: 'node_modules/angular-ui-grid/'})
.pipe(gulp.dest(distDest + "/css"));

Expand All @@ -271,7 +272,6 @@ function app_min_css(cb) {

const vendorCssSources = [
'node_modules/bootstrap-css-only/css/bootstrap.css',
'node_modules/bootstrap-css-only/css/bootstrap-theme.css',
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What is this CSS required for @carueda ? I couldn't find it with the updated dependencies. Do you know which package it comes from?

'node_modules/font-awesome/css/font-awesome.css',
'node_modules/angular-ui-grid/ui-grid.css',
'node_modules/ui-select/dist/select.css',
Expand Down
Loading