-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit b6e0528
Showing
25 changed files
with
1,359 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"directory": "app/components" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# EditorConfig helps developers define and maintain consistent | ||
# coding styles between different editors and IDEs | ||
# editorconfig.org | ||
|
||
root = true | ||
|
||
|
||
[*] | ||
|
||
# Change these settings to your own preference | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
# We recommend you to keep these unchanged | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
|
||
[*.md] | ||
trim_trailing_whitespace = false |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* text=auto |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
node_modules | ||
dist | ||
.tmp | ||
.sass-cache | ||
app/components |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"node": true, | ||
"browser": true, | ||
"es5": true, | ||
"esnext": true, | ||
"bitwise": true, | ||
"camelcase": true, | ||
"curly": true, | ||
"eqeqeq": true, | ||
"immed": true, | ||
"indent": 2, | ||
"latedef": true, | ||
"newcap": true, | ||
"noarg": true, | ||
"quotmark": "single", | ||
"regexp": true, | ||
"undef": true, | ||
"unused": true, | ||
"strict": true, | ||
"trailing": true, | ||
"smarttabs": true, | ||
"globals": { | ||
"angular": false | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,303 @@ | ||
'use strict'; | ||
var lrSnippet = require('grunt-contrib-livereload/lib/utils').livereloadSnippet; | ||
var mountFolder = function (connect, dir) { | ||
return connect.static(require('path').resolve(dir)); | ||
}; | ||
|
||
module.exports = function (grunt) { | ||
// load all grunt tasks | ||
require('matchdep').filterDev('grunt-*').forEach(grunt.loadNpmTasks); | ||
|
||
// configurable paths | ||
var yeomanConfig = { | ||
app: 'app', | ||
dist: 'dist' | ||
}; | ||
|
||
try { | ||
yeomanConfig.app = require('./component.json').appPath || yeomanConfig.app; | ||
} catch (e) {} | ||
|
||
grunt.initConfig({ | ||
yeoman: yeomanConfig, | ||
watch: { | ||
coffee: { | ||
files: ['<%= yeoman.app %>/scripts/{,*/}*.coffee'], | ||
tasks: ['coffee:dist'] | ||
}, | ||
coffeeTest: { | ||
files: ['test/spec/{,*/}*.coffee'], | ||
tasks: ['coffee:test'] | ||
}, | ||
compass: { | ||
files: ['<%= yeoman.app %>/styles/{,*/}*.{scss,sass}'], | ||
tasks: ['compass'] | ||
}, | ||
livereload: { | ||
files: [ | ||
'<%= yeoman.app %>/{,*/}*.html', | ||
'{.tmp,<%= yeoman.app %>}/styles/{,*/}*.css', | ||
'{.tmp,<%= yeoman.app %>}/scripts/{,*/}*.js', | ||
'<%= yeoman.app %>/images/{,*/}*.{png,jpg,jpeg,gif,webp,svg}' | ||
], | ||
tasks: ['livereload'] | ||
} | ||
}, | ||
connect: { | ||
options: { | ||
port: 9000, | ||
// Change this to '0.0.0.0' to access the server from outside. | ||
hostname: 'localhost' | ||
}, | ||
livereload: { | ||
options: { | ||
middleware: function (connect) { | ||
return [ | ||
lrSnippet, | ||
mountFolder(connect, '.tmp'), | ||
mountFolder(connect, yeomanConfig.app) | ||
]; | ||
} | ||
} | ||
}, | ||
test: { | ||
options: { | ||
middleware: function (connect) { | ||
return [ | ||
mountFolder(connect, '.tmp'), | ||
mountFolder(connect, 'test') | ||
]; | ||
} | ||
} | ||
} | ||
}, | ||
open: { | ||
server: { | ||
url: 'http://localhost:<%= connect.options.port %>' | ||
} | ||
}, | ||
clean: { | ||
dist: { | ||
files: [{ | ||
dot: true, | ||
src: [ | ||
'.tmp', | ||
'<%= yeoman.dist %>/*', | ||
'!<%= yeoman.dist %>/.git*' | ||
] | ||
}] | ||
}, | ||
server: '.tmp' | ||
}, | ||
jshint: { | ||
options: { | ||
jshintrc: '.jshintrc' | ||
}, | ||
all: [ | ||
'Gruntfile.js', | ||
'<%= yeoman.app %>/scripts/{,*/}*.js' | ||
] | ||
}, | ||
karma: { | ||
unit: { | ||
configFile: 'karma.conf.js', | ||
singleRun: true | ||
} | ||
}, | ||
coffee: { | ||
dist: { | ||
files: [{ | ||
expand: true, | ||
cwd: '<%= yeoman.app %>/scripts', | ||
src: '{,*/}*.coffee', | ||
dest: '.tmp/scripts', | ||
ext: '.js' | ||
}] | ||
}, | ||
test: { | ||
files: [{ | ||
expand: true, | ||
cwd: 'test/spec', | ||
src: '{,*/}*.coffee', | ||
dest: '.tmp/spec', | ||
ext: '.js' | ||
}] | ||
} | ||
}, | ||
compass: { | ||
options: { | ||
sassDir: '<%= yeoman.app %>/styles', | ||
cssDir: '.tmp/styles', | ||
imagesDir: '<%= yeoman.app %>/images', | ||
javascriptsDir: '<%= yeoman.app %>/scripts', | ||
fontsDir: '<%= yeoman.app %>/styles/fonts', | ||
importPath: '<%= yeoman.app %>/components', | ||
relativeAssets: true | ||
}, | ||
dist: {}, | ||
server: { | ||
options: { | ||
debugInfo: true | ||
} | ||
} | ||
}, | ||
concat: { | ||
dist: { | ||
files: { | ||
'<%= yeoman.dist %>/scripts/scripts.js': [ | ||
'.tmp/scripts/{,*/}*.js', | ||
'<%= yeoman.app %>/scripts/{,*/}*.js' | ||
] | ||
} | ||
} | ||
}, | ||
useminPrepare: { | ||
html: '<%= yeoman.app %>/index.html', | ||
options: { | ||
dest: '<%= yeoman.dist %>' | ||
} | ||
}, | ||
usemin: { | ||
html: ['<%= yeoman.dist %>/{,*/}*.html'], | ||
css: ['<%= yeoman.dist %>/styles/{,*/}*.css'], | ||
options: { | ||
dirs: ['<%= yeoman.dist %>'] | ||
} | ||
}, | ||
imagemin: { | ||
dist: { | ||
files: [{ | ||
expand: true, | ||
cwd: '<%= yeoman.app %>/images', | ||
src: '{,*/}*.{png,jpg,jpeg}', | ||
dest: '<%= yeoman.dist %>/images' | ||
}] | ||
} | ||
}, | ||
cssmin: { | ||
dist: { | ||
files: { | ||
'<%= yeoman.dist %>/styles/main.css': [ | ||
'.tmp/styles/{,*/}*.css', | ||
'<%= yeoman.app %>/styles/{,*/}*.css' | ||
] | ||
} | ||
} | ||
}, | ||
htmlmin: { | ||
dist: { | ||
options: { | ||
/*removeCommentsFromCDATA: true, | ||
// https://github.com/yeoman/grunt-usemin/issues/44 | ||
//collapseWhitespace: true, | ||
collapseBooleanAttributes: true, | ||
removeAttributeQuotes: true, | ||
removeRedundantAttributes: true, | ||
useShortDoctype: true, | ||
removeEmptyAttributes: true, | ||
removeOptionalTags: true*/ | ||
}, | ||
files: [{ | ||
expand: true, | ||
cwd: '<%= yeoman.app %>', | ||
src: ['*.html', 'views/*.html'], | ||
dest: '<%= yeoman.dist %>' | ||
}] | ||
} | ||
}, | ||
cdnify: { | ||
dist: { | ||
html: ['<%= yeoman.dist %>/*.html'] | ||
} | ||
}, | ||
ngmin: { | ||
dist: { | ||
files: [{ | ||
expand: true, | ||
cwd: '<%= yeoman.dist %>/scripts', | ||
src: '*.js', | ||
dest: '<%= yeoman.dist %>/scripts' | ||
}] | ||
} | ||
}, | ||
uglify: { | ||
dist: { | ||
files: { | ||
'<%= yeoman.dist %>/scripts/scripts.js': [ | ||
'<%= yeoman.dist %>/scripts/scripts.js' | ||
] | ||
} | ||
} | ||
}, | ||
rev: { | ||
dist: { | ||
files: { | ||
src: [ | ||
'<%= yeoman.dist %>/scripts/{,*/}*.js', | ||
'<%= yeoman.dist %>/styles/{,*/}*.css', | ||
'<%= yeoman.dist %>/images/{,*/}*.{png,jpg,jpeg,gif,webp,svg}', | ||
'<%= yeoman.dist %>/styles/fonts/*' | ||
] | ||
} | ||
} | ||
}, | ||
copy: { | ||
dist: { | ||
files: [{ | ||
expand: true, | ||
dot: true, | ||
cwd: '<%= yeoman.app %>', | ||
dest: '<%= yeoman.dist %>', | ||
src: [ | ||
'*.{ico,txt}', | ||
'.htaccess', | ||
'components/**/*', | ||
'images/{,*/}*.{gif,webp}', | ||
'styles/fonts/*' | ||
] | ||
}] | ||
} | ||
} | ||
}); | ||
|
||
grunt.renameTask('regarde', 'watch'); | ||
|
||
grunt.registerTask('server', [ | ||
'clean:server', | ||
'coffee:dist', | ||
'compass:server', | ||
'livereload-start', | ||
'connect:livereload', | ||
'open', | ||
'watch' | ||
]); | ||
|
||
grunt.registerTask('test', [ | ||
'clean:server', | ||
'coffee', | ||
'compass', | ||
'connect:test', | ||
'karma' | ||
]); | ||
|
||
grunt.registerTask('build', [ | ||
'clean:dist', | ||
'jshint', | ||
'test', | ||
'coffee', | ||
'compass:dist', | ||
'useminPrepare', | ||
'imagemin', | ||
'cssmin', | ||
'htmlmin', | ||
'concat', | ||
'copy', | ||
'cdnify', | ||
'ngmin', | ||
'uglify', | ||
'rev', | ||
'usemin' | ||
]); | ||
|
||
grunt.registerTask('default', ['build']); | ||
}; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
*.coffee |
Oops, something went wrong.