From 27017ba64ef649e19286e34d90492da356a0846a Mon Sep 17 00:00:00 2001 From: Manuel Kallenbach Date: Thu, 13 Aug 2015 09:42:14 +0200 Subject: [PATCH 1/2] add projecttalk to readme --- CONTRIBUTING.md | 2 +- README.md | 8 ++++++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 89bb3a8f8..b10264c4f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -2,7 +2,7 @@ ### Usage Questions -Questions about usage should be asked on [StackOverflow](http://stackoverflow.com/questions/tagged/semantic-ui) or [Gitter](https://gitter.im/Semantic-Org/Semantic-UI). +Questions about usage should be asked on [the ProjectTalk message board](http://www.projecttalk.io/boards/Semantic-Org%2FSemantic-UI), [StackOverflow](http://stackoverflow.com/questions/tagged/semantic-ui) or [Gitter](https://gitter.im/Semantic-Org/Semantic-UI). Examples of usage questions * *Why isnt my code working?* diff --git a/README.md b/README.md index 1e64d4bd1..219f0d688 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,9 @@ [![Join the chat at https://gitter.im/Semantic-Org/Semantic-UI](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Semantic-Org/Semantic-UI?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) +[![ProjectTalk Messageboard](http://www.projecttalk.io/images/gh_badge-3e578a9f437f841de7446bab9a49d103.svg?vsn=d)] +(http://www.projecttalk.io/boards/Semantic-Org%2FSemantic-UI?utm_campaign=gh-badge&utm_medium=badge&utm_source=github) + Semantic is a UI framework designed for theming. Key Features @@ -57,12 +60,12 @@ Although some components will work in IE9, [grids](http://semantic-ui.com/collec ## Community #### Getting Help -Please **do not post** usage questions to GitHub Issues. For these types of questions use [StackOverflow](http://stackoverflow.com/questions/tagged/semantic-ui) or join our [Gitter chatroom](https://gitter.im/Semantic-Org/Semantic-UI). +Please **do not post** usage questions to GitHub Issues. For these types of questions use [StackOverflow](http://stackoverflow.com/questions/tagged/semantic-ui), [ProjectTalk](http://www.projecttalk.io/boards/Semantic-Org%2FSemantic-UI) or join our [Gitter chatroom](https://gitter.im/Semantic-Org/Semantic-UI). #### Submitting Bugs and Enhancements [GitHub Issues](https://github.com/Semantic-Org/Semantic-UI/issues) is for suggesting enhancements and reporting bugs. Before submiting a bug make sure you do the following: * Check out our [contributing guide](https://github.com/Semantic-Org/Semantic-UI/blob/master/CONTRIBUTING.md) for info on our release cycle -* [Fork this boilerplate JSFiddle](http://jsfiddle.net/efp8z6Ln/) to create a test case for your bug. If a bug is demonstratable from the docs, that's ok as well. Only bugs that include a test case can be triaged. +* [Fork this boilerplate JSFiddle](http://jsfiddle.net/efp8z6Ln/) to create a test case for your bug. If a bug is demonstratable from the docs, that's ok as well. Only bugs that include a test case can be triaged. #### Pull Requests @@ -82,6 +85,7 @@ Resource | Description --- | --- | Bugs & Feature Requests | All bug submission **require** a link to a test case, and a set of steps to reproduce the issue. You can make a test case by forking this [jsfiddle](http://jsfiddle.net/efp8z6Ln/), then submit your [bug report on GitHub Issues](https://github.com/Semantic-Org/Semantic-UI/issues) Live Chat | Join our [Gitter.im Room](https://gitter.im/Semantic-Org/Semantic-UI) +Message Board | [ProjectTalk Board](http://www.projecttalk.io/boards/Semantic-Org%2FSemantic-UI) Newsletter Updates | Sign up for updates at [semantic-ui.com](http://www.semantic-ui.com) Additional Resources | Submit a question on [StackOverflow](http://stackoverflow.com/questions/tagged/semantic-ui) or ask our [Google Group](https://groups.google.com/forum/#!forum/semantic-ui) From eb331afdc262ccf9235b4966e8451366d99501e2 Mon Sep 17 00:00:00 2001 From: Jack Lukic Date: Thu, 13 Aug 2015 11:25:06 -0400 Subject: [PATCH 2/2] Revert "Fix callback return from build task" --- tasks/build.js | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/tasks/build.js b/tasks/build.js index cd7111895..f70d9c5df 100644 --- a/tasks/build.js +++ b/tasks/build.js @@ -7,7 +7,6 @@ var // config config = require('./config/user'), - runSequence = require('run-sequence'), install = require('./config/project/install') ; @@ -26,20 +25,18 @@ module.exports = function(callback) { return; } - var tasks = []; - // check for right-to-left (RTL) language if(config.rtl == 'both') { - tasks.push('build-rtl'); + gulp.start('build-rtl'); } if(config.rtl === true || config.rtl === 'Yes') { gulp.start('build-rtl'); return; } - tasks.push('build-javascript'); - tasks.push('build-css'); - tasks.push('build-assets'); + gulp.start('build-javascript'); + gulp.start('build-css'); + gulp.start('build-assets'); + - runSequence(tasks, callback); };