Commit eb2b61c Florens Verschelde
committed
1 parent ff49706 commit eb2b61c Copy full SHA for eb2b61c
File tree 5 files changed +8
-7
lines changed
5 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ A collection of configurable [gulp](http://gulpjs.com/) tasks we use to build fr
13
13
- [ Using tasks] ( #using-tasks )
14
14
- [ Enable system notifications] ( #enable-system-notifications )
15
15
- Built-in tasks:
16
- - [ less] ( doc/task-less.md ) (LESS and Autoprefixer)
16
+ - [ less] ( doc/task-less.md ) (Less and Autoprefixer)
17
17
- [ sass] ( doc/task-sass.md ) (Sass and Autoprefixer)
18
18
- [ svgsymbols] ( doc/task-svgsymbols.md ) (SVG symbol sprites)
19
19
- [ jsconcat] ( doc/task-jsconcat.md ) (Concatenate and minify JS scripts)
Original file line number Diff line number Diff line change 1
1
/**
2
- * @file LESS + Autoprefixer
2
+ * @file Less + Autoprefixer
3
3
*/
4
4
'use strict'
5
5
@@ -10,9 +10,9 @@ const tools = require('../tasktools.js')
10
10
const autoprefixer = require ( 'gulp-autoprefixer' ) ;
11
11
12
12
/**
13
- * Build one or more LESS stylesheets
13
+ * Build one or more Less stylesheets
14
14
* @param {Object } conf
15
- * @property {Array|string } conf.src - glob patterns of LESS files to build
15
+ * @property {Array|string } conf.src - glob patterns of Less files to build
16
16
* @property {string } conf.dest - output folder or file name
17
17
* @property {string } conf.browsers - Autoprefixer browser compat
18
18
* @property {Array } conf.includePaths - Folders to look for '@import's in
Original file line number Diff line number Diff line change 1
1
{
2
2
"dependencies" : {
3
+ "gulp-autoprefixer" : " ^3.1" ,
3
4
"gulp-less" : " ^3.3"
4
5
}
5
6
}
Original file line number Diff line number Diff line change 1
- # Task: compile LESS with Autoprefixer
1
+ # Task: compile Less with Autoprefixer
2
2
3
3
- Config key: ` less `
4
4
- Source: ` assets-builder/tasks/less.js `
5
5
6
- Compile with gulp-less and run through Autoprefixer. Optionally concatenates files.
6
+ Compile with Less and run through Autoprefixer. Optionally concatenates files.
7
7
8
8
## Options
9
9
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " assets-builder" ,
3
3
"private" : true ,
4
- "version" : " 3.0.0 " ,
4
+ "version" : " 3.0.1 " ,
5
5
"scripts" : {
6
6
"build" : " gulp build" ,
7
7
"watch" : " gulp watch"
You can’t perform that action at this time.
0 commit comments