diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index 80c220991..951cf2497 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -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 diff --git a/gulpfile.js b/gulpfile.js index e37e15f5f..7b9c5894d 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -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); -} \ No newline at end of file +} diff --git a/tasks/config/npm/gulpfile.js b/tasks/config/npm/gulpfile.js index 3642a6506..bde19605e 100644 --- a/tasks/config/npm/gulpfile.js +++ b/tasks/config/npm/gulpfile.js @@ -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); -} \ No newline at end of file + gulp.task('watch-rtl', 'Watch files as RTL', watchRTL); + gulp.task('build-rtl', 'Build all files as RTL', buildRTL); +}