Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
brainfood
/
backbone-seen
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
e9cfff0a
authored
2016-05-24 10:25:17 -0500
by
Adam Heath
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
No external changes, but Gruntfile.js now uses grunt-monty-python.
1 parent
eac3349d
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
28 additions
and
594 deletions
Gruntfile.js
bower.json
package.json
test/specs/backbone-seen.spec.js → src/scripts/backbone-seen.spec.js
Gruntfile.js
View file @
e9cfff0
...
...
@@ -11,564 +11,24 @@ module.exports = function (grunt) {
/* global require */
'use strict'
;
var
jasmineRequirejsTemplateOptions
=
function
(
withInstanbul
)
{
/* global requirejs */
var
callback
;
if
(
withInstanbul
)
{
callback
=
function
()
{
var
oldLoad
=
requirejs
.
load
;
requirejs
.
load
=
function
(
context
,
moduleName
,
url
)
{
//console.log('context=' + JSON.stringify(arguments), 'moduleName=' + moduleName, 'url=' + url);
var
parts
=
url
.
split
(
'/'
);
for
(
var
i
=
0
;
i
<
parts
.
length
;
)
{
var
part
=
parts
[
i
];
if
(
part
===
'.'
)
{
parts
.
splice
(
i
,
1
);
}
else
if
(
part
===
''
)
{
parts
.
splice
(
i
,
1
);
}
else
if
(
part
===
'..'
)
{
if
(
i
>
0
)
{
i
--
;
parts
.
splice
(
i
,
2
);
}
else
{
parts
.
splice
(
i
,
1
);
}
}
else
{
i
++
;
}
}
url
=
parts
.
join
(
'/'
);
if
(
url
.
indexOf
(
'src/scripts/'
)
===
0
)
{
url
=
'./.grunt/grunt-contrib-jasmine/'
+
url
;
}
if
(
url
.
indexOf
(
'test/specs/'
)
===
0
)
{
url
=
'./.grunt/grunt-contrib-jasmine/'
+
url
;
}
//console.log('url=' + url);
return
oldLoad
.
apply
(
this
,
[
context
,
moduleName
,
url
]);
};
};
}
return
{
requireConfigFile
:
'<%= yeoman.src %>/scripts/config.js'
,
requireConfig
:
{
baseUrl
:
'<%= yeoman.src %>/scripts'
,
callback
:
callback
}
};
};
var
jasmineInstanbulTemplateOptions
=
function
(
nestedTemplate
,
nestedOptions
)
{
return
{
coverage
:
'bin/coverage/coverage.json'
,
report
:
'bin/coverage'
,
replace
:
false
,
template
:
require
(
nestedTemplate
),
templateOptions
:
nestedOptions
};
};
// Load grunt tasks automatically
require
(
'load-grunt-tasks'
)(
grunt
);
// Time how long tasks take. Can help when optimizing build times
require
(
'time-grunt'
)(
grunt
);
// Define the configuration for all the tasks
grunt
.
initConfig
({
bower
:
{
target
:
{
options
:
{
exclude
:
[
'requirejs'
,
],
transitive
:
true
,
},
rjsConfig
:
'<%= yeoman.src %>/scripts/config.js'
}
},
// Project settings
yeoman
:
{
// Configurable paths
app
:
'app'
,
dist
:
'dist'
,
src
:
'src'
,
},
// Watches files for changes and runs tasks based on the changed files
watch
:
{
js
:
{
files
:
[
'<%= yeoman.src %>/scripts/{,*/}*.js'
],
tasks
:
[
'jshint'
],
},
jstest
:
{
files
:
[
'test/spec/{,*/}*.js'
],
tasks
:
[
'test:watch'
]
},
gruntfile
:
{
files
:
[
'Gruntfile.js'
]
},
styles
:
{
files
:
[
'<%= yeoman.src %>/styles/{,*/}*.css'
],
tasks
:
[
'newer:copy:styles'
,
'autoprefixer'
]
}
},
// The actual grunt server settings
connect
:
{
options
:
{
port
:
9000
,
// Change this to '0.0.0.0' to access the server from outside
hostname
:
'localhost'
},
app
:
{
options
:
{
open
:
false
,
base
:
[
'.tmp'
,
'<%= yeoman.src %>'
]
}
},
test
:
{
options
:
{
port
:
9001
,
base
:
[
'.tmp'
,
'test'
,
'<%= yeoman.src %>'
]
}
},
dist
:
{
options
:
{
open
:
false
,
base
:
'<%= yeoman.dist %>'
,
}
}
},
// Empties folders to start fresh
clean
:
{
dist
:
{
files
:
[{
dot
:
true
,
src
:
[
'.tmp'
,
'<%= yeoman.dist %>/*'
,
'!<%= yeoman.dist %>/.git*'
]
}]
},
server
:
'.tmp'
var
config
=
{};
config
.
base
=
'src'
;
config
.
jshint
=
{
options
:
{
},
// Make sure code styles are up to par and there are no obvious mistakes
jshint
:
{
options
:
{
browser
:
true
,
esnext
:
true
,
bitwise
:
true
,
camelcase
:
true
,
curly
:
true
,
eqeqeq
:
true
,
immed
:
true
,
indent
:
4
,
latedef
:
true
,
newcap
:
true
,
noarg
:
true
,
quotmark
:
'single'
,
undef
:
true
,
unused
:
true
,
strict
:
true
,
trailing
:
true
,
smarttabs
:
true
,
jquery
:
true
,
reporter
:
require
(
'jshint-stylish'
)
},
all
:
[
'Gruntfile.js'
,
],
scripts
:
{
options
:
{
globals
:
{
define
:
false
,
}
},
files
:
{
src
:
[
'<%= yeoman.src %>/scripts/**/*.js'
,
'!<%= yeoman.src %>/scripts/vendor/*'
,
]
}
},
specs
:
{
options
:
{
globals
:
{
beforeEach
:
false
,
define
:
false
,
describe
:
false
,
expect
:
false
,
it
:
false
,
jasmine
:
false
,
}
},
files
:
{
src
:
[
'test/specs/**/*.spec.js'
]
}
}
},
jasmine
:
{
all
:
{
src
:
[
'<%= yeoman.src %>/scripts/{,**/}*.js'
,
'test/specs/**/*.spec.js'
,
],
options
:
{
//specs: 'test/specs/**/*.spec.js',
template
:
require
(
'grunt-template-jasmine-istanbul'
),
templateOptions
:
jasmineInstanbulTemplateOptions
(
'grunt-template-jasmine-requirejs'
,
jasmineRequirejsTemplateOptions
(
true
))
}
}
},
// Mocha testing framework configuration options
mocha
:
{
all
:
{
options
:
{
run
:
true
,
urls
:
[
'http://<%= connect.test.options.hostname %>:<%= connect.test.options.port %>/index.html'
]
}
}
},
// Add vendor prefixed styles
autoprefixer
:
{
options
:
{
browsers
:
[
'last 1 version'
]
},
dist
:
{
files
:
[{
expand
:
true
,
cwd
:
'.tmp/styles/'
,
src
:
'{,*/}*.css'
,
dest
:
'.tmp/styles/'
}]
}
browserOptions
:
{
},
// Automatically inject Bower components into the HTML file
'bower-install'
:
{
app
:
{
html
:
'<%= yeoman.src %>/index.html'
,
ignorePath
:
'<%= yeoman.src %>/'
}
},
// Renames files for browser caching purposes
rev
:
{
dist
:
{
files
:
{
src
:
[
'<%= yeoman.dist %>/scripts/*/**/*.js'
,
'<%= yeoman.dist %>/scripts/!(config)*.js'
,
'<%= yeoman.dist %>/styles/{,*/}*.css'
,
'<%= yeoman.dist %>/images/{,*/}*.{gif,jpeg,jpg,png,webp}'
,
'<%= yeoman.dist %>/styles/fonts/{,*/}*.*'
]
}
},
requireconfig
:
{
files
:
{
src
:
[
'<%= yeoman.dist %>/scripts/config.js'
]
}
}
},
requirejs
:
{
dist
:
{
options
:
{
done
:
function
(
done
)
{
var
requireModules
=
grunt
.
config
(
'requireModules'
)
||
{};
var
lines
=
[
'require.bundles = (function(bundles) {'
,
];
for
(
var
key
in
requireModules
)
{
var
keyS
=
JSON
.
stringify
(
key
);
var
value
=
requireModules
[
key
];
var
included
=
[];
for
(
var
i
=
0
;
i
<
value
.
included
.
length
;
i
++
)
{
var
file
=
value
.
included
[
i
];
if
(
file
.
match
(
/
\.
js$/
))
{
included
.
push
(
file
.
substring
(
0
,
file
.
length
-
3
));
}
}
lines
.
push
(
'bundles['
+
keyS
+
'] = '
+
JSON
.
stringify
(
included
)
+
';'
);
}
lines
.
push
(
'return bundles;'
);
lines
.
push
(
'})(require.bundles || {});'
);
grunt
.
file
.
write
(
'.tmp/scripts/bundles.js'
,
lines
.
join
(
'\n'
));
done
();
},
baseUrl
:
'<%= yeoman.src %>/scripts'
,
mainConfigFile
:
'<%= yeoman.src %>/scripts/config.js'
,
wrapShim
:
true
,
dir
:
'<%= yeoman.dist %>/scripts'
,
optimize
:
'none'
,
removeCombined
:
true
,
onModuleBundleComplete
:
function
(
data
)
{
if
(
data
.
name
.
slice
(
0
,
'bundles/'
.
length
)
===
'bundles/'
)
{
var
requireModules
=
grunt
.
config
(
'requireModules'
)
||
{};
requireModules
[
data
.
name
]
=
data
;
grunt
.
config
(
'requireModules'
,
requireModules
);
}
},
}
},
},
// Reads HTML for usemin blocks to enable smart builds that automatically
// concat, minify and revision files. Creates configurations in memory so
// additional tasks can operate on them
useminPrepare
:
{
options
:
{
dest
:
'<%= yeoman.dist %>'
},
html
:
'<%= yeoman.src %>/index.html'
},
// Performs rewrites based on rev and the useminPrepare configuration
usemin
:
{
options
:
{
assetsDirs
:
[
'<%= yeoman.dist %>'
]
},
html
:
[
'<%= yeoman.dist %>/{,*/}*.html'
],
css
:
[
'<%= yeoman.dist %>/styles/{,*/}*.css'
]
},
// The following *-min tasks produce minified files in the dist folder
imagemin
:
{
dist
:
{
files
:
[{
expand
:
true
,
cwd
:
'<%= yeoman.src %>/images'
,
src
:
'{,*/}*.{gif,jpeg,jpg,png}'
,
dest
:
'<%= yeoman.dist %>/images'
}]
}
},
svgmin
:
{
dist
:
{
files
:
[{
expand
:
true
,
cwd
:
'<%= yeoman.src %>/images'
,
src
:
'{,*/}*.svg'
,
dest
:
'<%= yeoman.dist %>/images'
}]
}
},
htmlmin
:
{
dist
:
{
options
:
{
collapseBooleanAttributes
:
true
,
collapseWhitespace
:
true
,
removeAttributeQuotes
:
true
,
removeCommentsFromCDATA
:
true
,
removeEmptyAttributes
:
true
,
removeOptionalTags
:
true
,
removeRedundantAttributes
:
true
,
useShortDoctype
:
true
},
files
:
[{
expand
:
true
,
cwd
:
'<%= yeoman.dist %>'
,
src
:
'{,*/}*.html'
,
dest
:
'<%= yeoman.dist %>'
}]
}
},
// By default, your `index.html`'s <!-- Usemin block --> will take care of
// minification. These next options are pre-configured if you do not wish
// to use the Usemin blocks.
// cssmin: {
// dist: {
// files: {
// '<%= yeoman.dist %>/styles/main.css': [
// '.tmp/styles/{,*/}*.css',
// '<%= yeoman.src %>/styles/{,*/}*.css'
// ]
// }
// }
// },
// uglify: {
// dist: {
// files: {
// '<%= yeoman.dist %>/scripts/scripts.js': [
// '<%= yeoman.dist %>/scripts/scripts.js'
// ]
// }
// }
// },
// concat: {
// dist: {}
// },
concat
:
{
requireconfig
:
{
}
},
uglify
:
{
dist
:
{
},
requireconfig
:
{
files
:
{
'<%= yeoman.dist %>/scripts/config.js'
:
[
'<%= yeoman.dist %>/scripts/config.js'
,
'.tmp/scripts/config.js'
,
],
}
}
},
// Copies remaining files to places other tasks can use
copy
:
{
dist
:
{
files
:
[{
expand
:
true
,
dot
:
true
,
cwd
:
'<%= yeoman.src %>'
,
dest
:
'<%= yeoman.dist %>'
,
src
:
[
'*.{ico,png,txt}'
,
'.htaccess'
,
'images/{,*/}*.webp'
,
'{,*/}*.html'
,
'styles/fonts/{,*/}*.*'
]
}]
},
styles
:
{
expand
:
true
,
dot
:
true
,
cwd
:
'<%= yeoman.src %>/styles'
,
dest
:
'.tmp/styles/'
,
src
:
'{,*/}*.css'
}
};
config
.
jscs
=
{
options
:
{
validateIndentation
:
4
,
reporter
:
'console'
,
maxErrors
:
-
1
,
},
// Run some tasks in parallel to speed up build process
concurrent
:
{
server
:
[
'copy:styles'
],
test
:
[
'copy:styles'
],
dist
:
[
'copy:styles'
,
'imagemin'
,
'svgmin'
]
}
});
grunt
.
loadNpmTasks
(
'grunt-bower-requirejs'
);
grunt
.
registerTask
(
'revconfig'
,
function
()
{
var
prefix
=
grunt
.
template
.
process
(
'<%= yeoman.dist %>/scripts/'
);
var
pattern
=
prefix
+
'**/*.{js,html}'
;
var
files
=
grunt
.
file
.
expand
(
pattern
);
var
lines
=
[];
grunt
.
util
.
_
.
each
(
files
,
function
(
file
)
{
file
=
file
.
substring
(
prefix
.
length
);
var
res
=
file
.
match
(
/^
(
.*
\/)?([
0-9a-f
]
+
)\.([^\/]
+
)\.([^\.]
+
)
$/
);
if
(
!
res
)
{
return
;
}
//grunt.log.oklns(JSON.stringify(res));
var
dir
=
res
[
1
]
||
''
;
//var hash = res[2];
var
base
=
res
[
3
];
var
ext
=
res
[
4
];
var
id
;
if
(
ext
===
'js'
)
{
id
=
dir
+
base
;
file
=
file
.
substring
(
0
,
file
.
length
-
ext
.
length
-
1
);
}
else
if
(
ext
===
'html'
)
{
id
=
'text!'
+
dir
+
base
+
'.'
+
ext
;
}
grunt
.
log
.
oklns
(
'map: '
+
id
+
' -> '
+
file
);
lines
.
push
(
'require.paths['
+
JSON
.
stringify
(
id
)
+
']='
+
JSON
.
stringify
(
file
)
+
';\n'
);
});
grunt
.
file
.
write
(
'.tmp/scripts/config.js'
,
lines
.
join
(
''
));
});
grunt
.
registerTask
(
'serve'
,
function
(
target
)
{
if
(
target
===
'dist'
)
{
return
grunt
.
task
.
run
([
'build'
,
'connect:dist:keepalive'
]);
}
grunt
.
task
.
run
([
'clean:server'
,
'concurrent:server'
,
'autoprefixer'
,
'connect:app'
,
'watch'
]);
});
grunt
.
registerTask
(
'server'
,
function
()
{
grunt
.
log
.
warn
(
'The `server` task has been deprecated. Use `grunt serve` to start a server.'
);
grunt
.
task
.
run
([
'serve'
]);
});
grunt
.
registerTask
(
'test'
,
function
(
target
)
{
if
(
target
!==
'watch'
)
{
grunt
.
task
.
run
([
'clean:server'
,
'concurrent:test'
,
'autoprefixer'
,
]);
}
grunt
.
task
.
run
([
'connect:test'
,
'mocha'
]);
});
grunt
.
registerTask
(
'build'
,
[
'clean:dist'
,
'useminPrepare'
,
'requirejs'
,
'concurrent:dist'
,
'autoprefixer'
,
'concat'
,
// 'cssmin',
'uglify:dist'
,
'copy:dist'
,
// 'rev:dist',
'revconfig'
,
'uglify:requireconfig'
,
// 'rev:requireconfig',
'usemin'
,
'htmlmin'
]);
grunt
.
registerTask
(
'dist'
,
[
'bower'
,
'newer:jshint'
,
// 'test',
'build'
]);
grunt
.
registerTask
(
'default'
,
[]);
};
config
.
jasmine
=
{
withCoverage
:
true
,
};
var
montyPython
=
require
(
'grunt-monty-python'
)(
grunt
);
montyPython
.
createConfig
(
config
);
};
...
...
bower.json
View file @
e9cfff0
{
"name"
:
"backbone-seen"
,
"version"
:
"0.0.
0
"
,
"version"
:
"0.0.
1
"
,
"authors"
:
[
"Adam Heath <doogie@brainfood.com>"
],
...
...
@@ -11,12 +11,11 @@
"ignore"
:
[
"**/.*"
,
"node_modules"
,
"src/lib"
,
"test"
"src/lib"
],
"dependencies"
:
{
"underscore"
:
"
~1.6.0
"
,
"backbone"
:
"
~1.1.0
"
,
"requirejs"
:
"
~2.1.10
"
"underscore"
:
""
,
"backbone"
:
""
,
"requirejs"
:
""
}
}
...
...
package.json
View file @
e9cfff0
{
"name"
:
"backbone-seen"
,
"version"
:
"0.0.
0
"
,
"version"
:
"0.0.
1
"
,
"main"
:
[
"src/scripts/backbone-seen.js"
],
"dependencies"
:
{
"underscore"
:
"
~1.6.0
"
,
"backbone"
:
"
~1.1.0
"
,
"requirejs"
:
"
~2.1.10
"
"underscore"
:
""
,
"backbone"
:
""
,
"requirejs"
:
""
},
"devDependencies"
:
{
"bower-requirejs"
:
"~0.9.2"
,
"grunt"
:
"~0.4.1"
,
"grunt-contrib-copy"
:
"~0.4.1"
,
"grunt-contrib-concat"
:
"~0.3.0"
,
"grunt-contrib-uglify"
:
"~0.2.0"
,
"grunt-contrib-jshint"
:
"~0.7.0"
,
"grunt-contrib-cssmin"
:
"~0.7.0"
,
"grunt-contrib-connect"
:
"~0.5.0"
,
"grunt-contrib-clean"
:
"~0.5.0"
,
"grunt-contrib-htmlmin"
:
"~0.1.3"
,
"grunt-bower-install"
:
"~0.7.0"
,
"grunt-contrib-imagemin"
:
"~0.2.0"
,
"grunt-contrib-watch"
:
"~0.5.2"
,
"grunt-rev"
:
"~0.1.0"
,
"grunt-autoprefixer"
:
"~0.5.0"
,
"grunt-usemin"
:
"~0.1.10"
,
"grunt-mocha"
:
"~0.4.0"
,
"grunt-newer"
:
"~0.6.0"
,
"grunt-svgmin"
:
"~0.2.0"
,
"grunt-concurrent"
:
"~0.4.0"
,
"load-grunt-tasks"
:
"~0.2.0"
,
"time-grunt"
:
"~0.2.0"
,
"jshint-stylish"
:
"~0.1.3"
,
"grunt-contrib-requirejs"
:
"~0.4.0"
,
"grunt-bower-requirejs"
:
"~0.8.4"
,
"grunt-template-jasmine-istanbul"
:
"~0.2.6"
,
"grunt-template-jasmine-requirejs"
:
"~0.1.10"
,
"grunt-contrib-jasmine"
:
"~0.5.3"
"grunt"
:
"~0"
,
"grunt-monty-python"
:
"git+ssh://git@gitlab.brainfood.com:brainfood/grunt-monty-python.git"
},
"engines"
:
{
"node"
:
">=0.8.0"
...
...
test/spec
s/backbone-seen.spec.js
→
src/script
s/backbone-seen.spec.js
View file @
e9cfff0
File moved
Please
register
or
sign in
to post a comment