Improve bower.json main field
* Add dist css and js to main field Thanks to @fedescarpa Closes #53
This commit is contained in:
parent
b00ca04832
commit
6abfbdb6a8
1 changed files with 9 additions and 5 deletions
14
bower.json
14
bower.json
|
|
@ -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"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue