Skip to content

Commit

Permalink
Fix incorrect paths in package.json files
Browse files Browse the repository at this point in the history
  • Loading branch information
Marvin Schürz committed Jan 19, 2025
1 parent 5972c81 commit e96e9c8
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions packages/resources/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
"build": "vite build"
},
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"typings": "./dist/index.d.ts",
"main": "./index.js",
"module": "./index.js",
"typings": "./index.d.ts",
"files": [
"*"
],
Expand Down
10 changes: 5 additions & 5 deletions packages/ruleset-mania/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
"lint:fix": "eslint src --fix"
},
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"typings": "./dist/index.d.ts",
"main": "./index.js",
"module": "./index.js",
"typings": "./index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
"types": "./index.d.ts",
"import": "./index.js"
}
},
"files": ["*"],
Expand Down
10 changes: 5 additions & 5 deletions packages/ruleset-osu/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
"lint:fix": "eslint src --fix"
},
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"typings": "./dist/index.d.ts",
"main": "./index.js",
"module": "./index.js",
"typings": "./index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
"types": "./index.d.ts",
"import": "./index.js"
}
},
"files": ["*"],
Expand Down

0 comments on commit e96e9c8

Please sign in to comment.