Use unminified css

This commit is contained in:
Josh Graham
2015-09-21 15:15:55 -05:00
parent 0d98c55e91
commit ee2d40f821
2 changed files with 17 additions and 9 deletions
@@ -1,21 +1,14 @@
{ {
"main": "toastr", "main": "toastr",
"registry": "github",
"format": "global", "format": "global",
"dependencies": { "dependencies": {
"jquery": "github:components/jquery", "jquery": "github:components/jquery",
"css": "github:systemjs/plugin-css" "css": "github:systemjs/plugin-css"
}, },
"files": [ "files": ["toastr.js", "toastr.css"],
"build/toastr.min.css",
"toastr"
],
"shim": { "shim": {
"toastr": { "toastr": {
"deps": [ "deps": ["jquery", "./toastr.css!"],
"jquery",
"./build/toastr.min.css!"
],
"exports": "toastr" "exports": "toastr"
} }
} }
@@ -0,0 +1,15 @@
{
"main": "toastr",
"format": "global",
"dependencies": {
"jquery": "github:components/jquery",
"css": "github:systemjs/plugin-css"
},
"files": ["toastr.js", "build/toastr.css"],
"shim": {
"toastr": {
"deps": ["jquery", "./build/toastr.css!"],
"exports": "toastr"
}
}
}