File tree 4 files changed +18
-14
lines changed
4 files changed +18
-14
lines changed Original file line number Diff line number Diff line change 1
1
@import ' sass-bootstrap/lib/bootstrap' ;
2
2
3
3
.hero-unit {
4
- margin : 50px auto 0 auto ;
5
- width : 400px ;
6
- }
4
+ margin : 50px auto 0 ;
5
+ width : 400px ;
6
+ }
Original file line number Diff line number Diff line change 10
10
"lint:changed" : " git diff --name-only --diff-filter=ACMRTUB `git merge-base HEAD master` | grep '\\ .js$' | xargs eslint --" ,
11
11
"start" : " gulp build:watch" ,
12
12
"watch" : " gulp build:watch" ,
13
- "test" : " mocha-phantomjs -R dot / test/SpecRunner.js "
13
+ "test" : " mocha-phantomjs -R spec test/index.html "
14
14
},
15
15
"private" : true ,
16
16
"preferGlobal" : true ,
59
59
"del" : " ^2.2.0" ,
60
60
"eslint" : " ^2.10.2" ,
61
61
"eslint-plugin-extra-rules" : " ^0.6.1" ,
62
+ "sass-lint" : " ~1.10.2" ,
62
63
"matchdep" : " ~0.1.2" ,
63
64
"mocha-phantomjs" : " ~3.1.0" ,
64
65
"chai" : " ~3.5.0" ,
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ require.config({
17
17
18
18
/* alias all marionette libs */
19
19
'backbone.marionette' : '../bower_components/backbone.marionette/lib/core/amd/backbone.marionette' ,
20
- 'backbone.wreqr' : '../bower_components/backbone.wreqr/lib/amd/backbone.wreqr' ,
20
+ 'backbone.wreqr' : '../bower_components/backbone.wreqr/lib/amd/backbone.wreqr' ,
21
21
'backbone.babysitter' : '../bower_components/backbone.babysitter/lib/amd/backbone.babysitter' ,
22
22
23
23
/* alias the bootstrap js lib */
@@ -26,7 +26,7 @@ require.config({
26
26
27
27
/* Alias text.js for template loading and shortcut the templates dir to tmpl */
28
28
text : '../bower_components/requirejs-text/text' ,
29
- tmpl : ' ../templates' ,
29
+ tmpl : " ../templates" ,
30
30
31
31
/* handlebars from the require handlerbars plugin below */
32
32
handlebars : '../bower_components/require-handlebars-plugin/Handlebars' ,
@@ -40,7 +40,7 @@ require.config({
40
40
hbs : {
41
41
disableI18n : true
42
42
}
43
- } )
43
+ } ) ;
44
44
45
45
/* require test suite */
46
46
require ( [
@@ -49,18 +49,20 @@ require([
49
49
] ,
50
50
function ( $ , testSuite ) {
51
51
52
- 'use strict'
52
+ 'use strict' ;
53
53
54
54
/* on dom ready require all specs and run */
55
55
$ ( function ( ) {
56
56
require ( testSuite . specs , function ( ) {
57
57
58
58
if ( window . mochaPhantomJS ) {
59
- mochaPhantomJS . run ( )
59
+ mochaPhantomJS . run ( ) ;
60
60
}
61
61
else {
62
- mocha . run ( )
62
+ mocha . run ( ) ;
63
63
}
64
- } )
65
- } )
66
- } )
64
+
65
+ } ) ;
66
+ } ) ;
67
+ } ) ;
68
+
Original file line number Diff line number Diff line change @@ -3,7 +3,8 @@ define(function() {
3
3
4
4
/* return an array of specs to be run */
5
5
return {
6
- specs : [ 'spec/exampleTest'
6
+ specs : [
7
+ 'spec/exampleTest'
7
8
]
8
9
} ;
9
10
} ) ;
You can’t perform that action at this time.
0 commit comments