Skip to content

Commit

Permalink
fix(package.json): Fix wrong package.json entry
Browse files Browse the repository at this point in the history
package.json entry was set incorrectly to index.js
  • Loading branch information
maximodleon committed Jan 29, 2018
1 parent 8fde256 commit 066df7e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ $ npm install wikipediajs
Via a CDN

```html
<script src="https://unpkg.com/wikipediajs/dist/index.umd.min.js"/>
<script src="https://unpkg.com/wikipediajs/dist/index.umd.min.js" />
```
# Features
* Search wikipedia articles in any language
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "wikipediajs",
"version": "0.0.0-development",
"description": "Wikipedia js api wrapper",
"main": "dist/index.js",
"main": "dist/wiki.js",
"unpkg":"dist/index.umd.min.js",
"scripts": {
"test": "mocha src/wiki.spec.js",
Expand Down

0 comments on commit 066df7e

Please sign in to comment.