Skip to content

Commit

Permalink
Update package.json (#532)
Browse files Browse the repository at this point in the history
Correct module path
  • Loading branch information
plesiecki authored and zenorocha committed Apr 29, 2018
1 parent e1d571b commit 0fcf8c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"repository": "zenorocha/clipboard.js",
"license": "MIT",
"main": "dist/clipboard.js",
"module": "src/clipboard.js",
"module": "dist/clipboard.js",
"keywords": [
"clipboard",
"copy",
Expand Down

1 comment on commit 0fcf8c9

@stof
Copy link

@stof stof commented on 0fcf8c9 Oct 2, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this looks weird to me. dist/clipboard.js does not contain the module version, but the UMD build.

Btw, this change means that good-listener, select and tiny-emitter are actually dev dependencies now, as the package now always use the bundle file which embeds them.

Please sign in to comment.