We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent add4f83 commit 99277b9Copy full SHA for 99277b9
package.json
@@ -3,7 +3,12 @@
3
"description": "The most simple mutex/semaphore implementation",
4
"homepage": "https://github.com/Kikobeats/superlock",
5
"version": "1.0.8",
6
+ "types": "src/index.d.ts",
7
"main": "src/index.js",
8
+ "exports": {
9
+ ".": "./src/index.js",
10
+ "./create": "./src/create.js"
11
+ },
12
"author": {
13
"email": "[email protected]",
14
"name": "Kiko Beats",
@@ -75,10 +80,6 @@
75
80
"@commitlint/config-conventional"
76
81
]
77
82
},
78
- "exports": {
79
- ".": "./src/index.js",
- "./create": "./src/create.js"
- },
83
"nano-staged": {
84
"*.js": [
85
"prettier-standard",
@@ -91,6 +92,5 @@
91
92
"simple-git-hooks": {
93
"commit-msg": "npx commitlint --edit",
94
"pre-commit": "npx nano-staged"
95
- "types": "src/index.d.ts"
+ }
96
}
0 commit comments