Skip to content

Commit

Permalink
move example collection to the root, making it easier accessible if u…
Browse files Browse the repository at this point in the history
…sed as a dependancy
  • Loading branch information
reebalazs committed Apr 6, 2013
1 parent 8f09703 commit aed574e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ module.exports = function(grunt) {
files: {
'examples/dist/':
[].concat(
collect.local('examples').select('example-lib.css'),
collect.local('examples').select('example-lib.js')
collect.local().select('example-lib.css'),
collect.local().select('example-lib.js')
)
}
}
Expand All @@ -26,7 +26,7 @@ module.exports = function(grunt) {
},
files: {
'examples/dist/example-bootstrap.css':
collect.local('examples').select('example-bootstrap.css')
collect.local().select('example-bootstrap.css')
}
}
},
Expand All @@ -36,9 +36,9 @@ module.exports = function(grunt) {
debounceDelay: 250
},
files: [].concat(
collect.local('examples').select('example-bootstrap.css'),
collect.local('examples').select('example-lib.css'),
collect.local('examples').select('example-lib.js'),
collect.local().select('example-bootstrap.css'),
collect.local().select('example-lib.css'),
collect.local().select('example-lib.js'),
[
'bootstrap/slickgrid.less',
'components/bootstrap/less/variables.less'
Expand Down
2 changes: 1 addition & 1 deletion examples/collection.json → collection.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"example-bootstrap.css": [
"example-bootstrap.less"
"examples/example-bootstrap.less"
],
"example-lib.css": [
"bower:bootstrap:docs/assets/css/bootstrap.css",
Expand Down

0 comments on commit aed574e

Please sign in to comment.