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",
"registry": "github",
"format": "global",
"dependencies": {
"jquery": "github:components/jquery",
"css": "github:systemjs/plugin-css"
},
"files": [
"build/toastr.min.css",
"toastr"
],
"files": ["toastr.js", "toastr.css"],
"shim": {
"toastr": {
"deps": [
"jquery",
"./build/toastr.min.css!"
],
"deps": ["jquery", "./toastr.css!"],
"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"
}
}
}