Implement JSON file based asset pipeline

Adds manifest.json which contains all of the mappings for the assets
ref: https://github.com/roots/roots/pull/1138#issuecomment-62593715

Prune and update NPM deps
This commit is contained in:
Austin Pray
2014-11-23 21:53:18 -06:00
parent 75db78a9a1
commit e2091ef880
5 changed files with 179 additions and 88 deletions

22
assets/manifest.json Normal file
View File

@@ -0,0 +1,22 @@
{
"dependencies": {
"theme": {
"scripts": [
"scripts/**/*",
"scripts/main.js"
],
"styles": "styles/main.less",
"editorStyle": "styles/editor-style.less"
},
"vendor": {
"scripts": [],
"styles": []
}
},
"ignoreDependencies": {
"bower": [
"jquery",
"modernizr"
]
}
}