This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
clean: { | |
options: { | |
files: { | |
dot: true | |
} | |
}, | |
dist: [ '<%= yeoman.dist %>/*' ], | |
tmp: [ '<%= yeoman.tmp %>/*' ] | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
angular.module('filterHelper', []); | |
angular.module('filterHelper').filter('bytes', function() { | |
return function(bytes, precision) { | |
var parsedBytes = parseFloat(bytes); | |
if (isNaN(parsedBytes) || !isFinite(bytes)) { | |
return '--'; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Yeoman is a mask worn by the following members of the open-source community: | |
Paul Irish, Addy Osmani, Mickael Daniel, Sindre Sorhus, Eric Bidelman, | |
Frederick Ros, Brian Ford, Pascal Hartig, Stephen Sawchuk, and countless | |
other contributors. | |
[?] What would you like to do? Run the Webapp generator (0.4.2) | |
Before you create a new application, be sure you are in the directory you | |
wish your application to be dropped into. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
main: { | |
js: 'js/bootstrap.js', | |
css: 'css/bootstrap.css' | |
}, | |
files: { | |
css: ['css/bootstrap-theme.css'] | |
fonts: [ | |
'fonts/glyphicons-halflings-regular.eot', | |
'fonts/glyphicons-halflings-regular.svg', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Load tasks | |
Execution Time (2014-04-07 04:55:03 UTC) | |
loading tasks 477ms ▇▇▇▇▇ 8% | |
clean:dist 66ms ▇ 1% | |
clean:tmp 184ms ▇▇ 3% | |
coffee:build 426ms ▇▇▇▇ 7% | |
jade:main 215ms ▇▇ 3% | |
jade:others 480ms ▇▇▇▇▇ 8% | |
stylus:main 652ms ▇▇▇▇▇▇▇ 10% | |
copy:app 80ms ▇ 1% |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git log --since=0.4.9 --no-merges --pretty="* [\`%h\`](https://github.com/yeoman/generator-webapp/commit/%h) %s" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
angular.module('myApp', ['widget']); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
angular.module('myApp', [ | |
'widget.bye', | |
'widget.hello' | |
]); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
wiredep = require( 'wiredep' ) | |
path = require 'path' | |
# Karma configuration | |
module.exports = ( config ) -> | |
config.set | |
# enable / disable watching file and executing tests whenever any file changes | |
autoWatch: true | |
# base path, that will be used to resolve files relative to this file |