fix(sync): add index file
Some checks failed
Actions / Build and Push Documentation (push) Failing after 14s
Some checks failed
Actions / Build and Push Documentation (push) Failing after 14s
This commit is contained in:
parent
50b42b038a
commit
57920a034d
3 changed files with 5 additions and 4 deletions
2
bun.lock
2
bun.lock
|
@ -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",
|
||||||
|
|
|
@ -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"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
1
packages/sync/src/index.ts
Normal file
1
packages/sync/src/index.ts
Normal file
|
@ -0,0 +1 @@
|
||||||
|
export { iteratePackwizIndex } from "./sync";
|
Loading…
Add table
Reference in a new issue