Skip to content

Commit bda9686

Browse files
aaronfrostSanderElias
authored andcommitted
fix(scully): fix the pointer in the package.json to point at the bin folder (#141)
Once we have deployed to npm, we want people to just point to `@scullyio/scully` from the code. This change makes that possibly. Without it, you have to point to `@scullyio/scully/bin`, which isn't intuitive.
1 parent 03950aa commit bda9686

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scully/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"bin": {
1010
"scully": "./bin/scully.js"
1111
},
12-
"main": "index.js",
12+
"main": "bin/index.js",
1313
"scripts": {
1414
"test": "echo \"Error: no test specified\" && exit 1",
1515
"start": "tsc -p ./tsconfig.scully.json -w",

0 commit comments

Comments
 (0)