Skip to content

Commit 9ff75f0

Browse files
committed
Downgrade less version
1 parent 3131d9f commit 9ff75f0

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

ckanext/querytool/fanstatic/css/main.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ckanext/querytool/fanstatic/css/public-query-tool.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ckanext/querytool/fanstatic/css/public-story-tool.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gulpfile.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ var cleanCSS = require('gulp-clean-css');
44
var autoprefixer = require('gulp-autoprefixer');
55
// var sourcemaps = require('gulp-sourcemaps'); - Uncomment when developing
66

7+
// The default Gulp.js task
8+
gulp.task('default', ['less', 'watch']);
9+
710
// Rebuild CSS from LESS
811
gulp.task('less', function () {
912
return gulp.src('ckanext/querytool/fanstatic/less/*.less')
@@ -24,8 +27,5 @@ gulp.task('less', function () {
2427

2528
// Watch for LESS file changes
2629
gulp.task('watch', function () {
27-
gulp.watch(['ckanext/querytool/fanstatic/less/**/*.less'], gulp.parallel('less'));
30+
gulp.watch(['ckanext/querytool/fanstatic/less/**/*.less'], ['less']);
2831
});
29-
30-
// The default Gulp.js task
31-
gulp.task('default', gulp.parallel('less', 'watch'));

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
"devDependencies": {
55
"chromedriver": "^2.43.1",
66
"doctoc": "^1.3.1",
7-
"gulp": "^4.0.0",
8-
"gulp-autoprefixer": "^5.0.0",
9-
"gulp-clean-css": "^3.9.4",
10-
"gulp-less": "^4.0.1",
7+
"gulp": "^3.9.1",
8+
"gulp-autoprefixer": "^4.1.0",
9+
"gulp-clean-css": "^3.9.2",
10+
"gulp-less": "^3.4.0",
1111
"gulp-sourcemaps": "^1.12.1",
12-
"less": "^3.8.1",
12+
"less": "^2.7.2",
1313
"saucelabs": "^1.5.0",
1414
"selenium-server": "3.141.5"
1515
}

0 commit comments

Comments
 (0)