Skip to content

Commit 3f8da0f

Browse files
committed
Fix type declaration path and update lerna config
1 parent 46e27f7 commit 3f8da0f

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

@flywave/flywave.gl/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
".": {
88
"import": "./dist/flywave.gl.module.js",
99
"require": "./dist/flywave.gl.cjs.js",
10-
"types": "./index.d.ts"
10+
"types": "./dist/flywave.d.ts"
1111
},
1212
"./package.json": "./package.json",
1313
"./decoder": {
@@ -18,7 +18,7 @@
1818
"typesVersions": {
1919
"*": {
2020
"*": [
21-
"dist/index.d.ts"
21+
"./dist/flywave.d.ts"
2222
]
2323
}
2424
},

lerna.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
],
1717
"registry": "https://registry.npmjs.org/",
1818
"skipPrivate": true,
19-
"tagVersionPrefix": "v"
19+
"message": "chore(release): publish %v"
2020
},
2121
"version": {
2222
"exact": true,
@@ -28,8 +28,8 @@
2828
"**/package-lock.json",
2929
"**/yarn.lock",
3030
"**/pnpm-lock.yaml"
31-
],
32-
"tagVersionPrefix": "v"
31+
]
3332
}
34-
}
35-
}
33+
},
34+
"npmClientArgs": ["--no-git-tag-version"]
35+
}

0 commit comments

Comments
 (0)