fix(sync): add index file
Some checks failed
Actions / Build and Push Documentation (push) Failing after 14s

This commit is contained in:
cswimr 2025-02-12 00:56:56 -06:00
parent 50b42b038a
commit 57920a034d
Signed by: cswimr
GPG key ID: 0EC431A8DA8F8087
3 changed files with 5 additions and 4 deletions

View file

@ -33,7 +33,7 @@
"version": "1.0.0", "version": "1.0.0",
"dependencies": { "dependencies": {
"@packwizjs/parser": "workspace:*", "@packwizjs/parser": "workspace:*",
"murmurhash2": "^0.1.0", "murmurhash2": "0.1.0",
}, },
"peerDependencies": { "peerDependencies": {
"typescript": "^5.0.0", "typescript": "^5.0.0",

View file

@ -1,6 +1,6 @@
{ {
"name": "@packwizjs/sync", "name": "@packwizjs/sync",
"module": "src/sync.ts", "module": "src/index.ts",
"version": "1.0.0", "version": "1.0.0",
"type": "module", "type": "module",
"description": "A directory syncing tool for Minecraft modpacks", "description": "A directory syncing tool for Minecraft modpacks",
@ -28,11 +28,11 @@
}, },
"dependencies": { "dependencies": {
"@packwizjs/parser": "workspace:*", "@packwizjs/parser": "workspace:*",
"murmurhash2": "^0.1.0" "murmurhash2": "0.1.0"
}, },
"exports": { "exports": {
".": { ".": {
"import": "./src/sync.ts" "import": "./src/index.ts"
} }
} }
} }

View file

@ -0,0 +1 @@
export { iteratePackwizIndex } from "./sync";