Improve bower.json main field

* Add dist css and js to main field

Thanks to @fedescarpa
Closes #53
This commit is contained in:
Rodrigo Fernandes 2016-02-01 09:39:07 +00:00
parent b00ca04832
commit 6abfbdb6a8

View file

@ -1,6 +1,6 @@
{ {
"name": "diff2html", "name": "diff2html",
"version": "1.2.0", "version": "1.2.1",
"homepage": "http://rtfpessoa.github.io/diff2html/", "homepage": "http://rtfpessoa.github.io/diff2html/",
"description": "Fast Diff to colorized HTML", "description": "Fast Diff to colorized HTML",
"keywords": [ "keywords": [
@ -27,7 +27,10 @@
"type": "git", "type": "git",
"url": "git://github.com/rtfpessoa/diff2html.git" "url": "git://github.com/rtfpessoa/diff2html.git"
}, },
"main": "./src/diff2html.js", "main": [
"./dist/diff2html.js",
"./dist/diff2html.css"
],
"license": "MIT", "license": "MIT",
"moduleType": [ "moduleType": [
"globals", "globals",
@ -35,10 +38,11 @@
], ],
"ignore": [ "ignore": [
"**/.*", "**/.*",
"node_modules",
"bower_components",
"package.json", "package.json",
"release.sh", "release.sh",
"config.jscs.json" "circle.yml",
"css",
"src",
"test"
] ]
} }