Skip to content

Commit

Permalink
feat(chore): fix cdn default js file
Browse files Browse the repository at this point in the history
The main property in package.json misses the file extension. jsdelivr needs the file extension, otherwise it does not recognize the default file. It's also advised by npm to include the file extension.
  • Loading branch information
lubber-de authored Aug 3, 2020
1 parent e2d70af commit 0c40022
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 @@ -18,7 +18,7 @@
},
"license": "MIT",
"author": "Jack Lukic <[email protected]>",
"main": "dist/semantic",
"main": "dist/semantic.js",
"repository": {
"type": "git",
"url": "https://github.com/fomantic/Fomantic-UI.git"
Expand Down

0 comments on commit 0c40022

Please sign in to comment.