Skip to content

Instantly share code, notes, and snippets.

View bekharsky's full-sized avatar

Sergey Bekharsky bekharsky

View GitHub Profile
@bekharsky
bekharsky / Brocfile.js
Last active February 12, 2017 00:03
Broccoli.js + Babel + LESS/SASS + BrowserSync
'use strict';
const TASKS = {
build: 'build',
serve: 'serve'
}
const BUILDING = process.argv.indexOf(TASKS.build) > 0;
const SERVING = process.argv.indexOf(TASKS.serve) > 0;
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle'
});
{{#link-to 'my-route'}}Route with action{{/link-to}}
{{outlet}}