Skip to content

Commit

Permalink
Fix package.json main attribute
Browse files Browse the repository at this point in the history
`main` can no longer be an array (it must be a string in npm, but can be an array in bower)

See angular-ui/ui-grid#4743 as an example
  • Loading branch information
Luis Lebolo committed May 26, 2016
1 parent 0bf7451 commit 2853640
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,7 @@
"name": "nz-tour",
"version": "1.0.2",
"description": "Touring and on-boarding made simple for AngularJS",
"main": [
"dist/nz-tour.min.js",
"dist/nz-tour.min.css"
],
"main": "dist/nz-tour.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "gulp build"
Expand All @@ -28,4 +25,4 @@
"gulp-uglifyjs": "^0.6.0",
"nib": "^1.1.0"
}
}
}

0 comments on commit 2853640

Please sign in to comment.