Skip to content

Commit 5b07c5d

Browse files
committed
Fix main entry point of package.
package.json’s main property should refer to the package’s main exports script. This should be the ./lib/index.js file.
1 parent 7ae553a commit 5b07c5d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "rss-slack-integration",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "Super simple Ghost blog Slack-integration to notify Slack channel upon new posts.",
5-
"main": "index.coffee",
5+
"main": "./lib/index.js",
66
"scripts": {
77
"start": "node lib/index.js",
88
"test": "echo \"Error: no test specified\" && exit 1",

0 commit comments

Comments
 (0)