Skip to content

Commit

Permalink
Fixes #3858 issue with gulp rtl tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
jlukic committed Mar 29, 2016
1 parent 4426f5c commit 7333ca8
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
2 changes: 2 additions & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@
**Bugs**
- **API** - Using `onResponse` with `dataType` other than JSON or JSONP would cause an error. (Not allowing plain text responses to be translated) #3653
- **Button** - `right icon` like `right arrow icon` would have additional margin inside an `icon button` #3525
- **Build Tools** - Fixed gulp help text incorrect for RTL tasks in build tools #3858
- **Button** - Fixed typo in `green inverted button` #3873
- **Button** - Fixed issue where `disabled loading button` would not remove `pointer-events` #2933
- **Checkbox** - Radio buttons received `indeterminate` styles when user has not yet interacted with the page in Chrome
- **Dropdown** - `apiSettings` was not defaulting to use `cache: 'local'` as specified in the docs
Expand Down
6 changes: 3 additions & 3 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,11 @@ gulp.task('build-docs', 'Build all files and add to SUI Docs', buildDocs);
---------------*/

if(config.rtl) {
gulp.task('watch-rtl', 'Build all files as RTL', watchRTL);
gulp.task('build-rtl', 'Watch files as RTL ', buildRTL);
gulp.task('watch-rtl', 'Watch files as RTL', watchRTL);
gulp.task('build-rtl', 'Build all files as RTL', buildRTL);
}

/* Admin Tasks */
if(config.admin) {
require('./tasks/collections/admin')(gulp);
}
}
6 changes: 3 additions & 3 deletions tasks/config/npm/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,6 @@ gulp.task('build-docs', 'Build all files and add to SUI Docs', buildDocs);
---------------*/

if(config.rtl) {
gulp.task('watch-rtl', 'Build all files as RTL', watchRTL);
gulp.task('build-rtl', 'Watch files as RTL ', buildRTL);
}
gulp.task('watch-rtl', 'Watch files as RTL', watchRTL);
gulp.task('build-rtl', 'Build all files as RTL', buildRTL);
}

0 comments on commit 7333ca8

Please sign in to comment.