Skip to content

Commit

Permalink
update version in package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
gilax committed Jul 31, 2019
1 parent a597bc0 commit e94458b
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 8 deletions.
1 change: 0 additions & 1 deletion gulp/primoProxy.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
var modRewrite = require('connect-modrewrite');
var fs = require('fs')
var Promise = require("bluebird");
var concat = require('concat-stream');
var config = require('./config');
var glob = require('glob');
Promise.promisifyAll(glob);
Expand Down
11 changes: 9 additions & 2 deletions gulp/tasks/build-scss.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
let autoprefixer = require('gulp-autoprefixer');
let config = require('../config').buildParams;
let useScss = require('../config').getUseScss;
let isVe = require('../config').getVe;
let proxy_server = require('../config').PROXY_SERVER
let gulp = require('gulp');
let cssnano = require('gulp-cssnano');
Expand Down Expand Up @@ -32,8 +33,14 @@ gulp.task('cleanup',()=> del(['www']));

gulp.task('extract-scss-files', ()=> {
let proxy_server = require('../config').PROXY_SERVER;
console.log(proxy_server+'/primo-explore/lib/scsss.tar.gz');
let url = proxy_server+'/primo-explore/lib/scsss.tar.gz';
let prefix;
if (isVe()) {
prefix = '/discovery';
} else {
prefix = '/primo-explore';
}
let url = proxy_server+prefix+'/lib/scsss.tar.gz';
console.log(url);
var headers = {
/*'Accept-Encoding': 'gzip'*/
};
Expand Down
9 changes: 4 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@
"browser-sync": "2.9.9",
"browserify": "13.1.1",
"camel-case": "^3.0.0",
"colors": "^1.3.1",
"concat-stream": "1.5.1",
"colors": "^1.3.3",
"connect-modrewrite": "0.8.2",
"css": "2.2.1",
"css-color-extractor": "0.0.4",
Expand All @@ -21,7 +20,7 @@
"fs-extra": "2.1.2",
"glob": "6.0.4",
"gulp": "3.9.1",
"gulp-angular-templatecache": "^2.0.0",
"gulp-angular-templatecache": "^2.2.7",
"gulp-autoprefixer": "3.1.0",
"gulp-babel": "6.1.2",
"gulp-clone": "1.0.0",
Expand All @@ -40,7 +39,7 @@
"gulp-zip": "3.1.0",
"http-response-object": "1.1.0",
"listdirs": "3.0.0",
"lodash": "4.17.11",
"lodash": "4.17.15",
"merge-stream": "1.0.0",
"minimist": "1.2.0",
"prompt": "1.0.0",
Expand All @@ -51,7 +50,7 @@
"run-sequence": "1.2.1",
"shelljs": "0.6.0",
"stream-to-promise": "^2.2.0",
"tar-fs": "1.13.0",
"tar-fs": "1.16.3",
"vinyl-buffer": "1.0.0",
"vinyl-source-stream": "1.1.0"
},
Expand Down

0 comments on commit e94458b

Please sign in to comment.