We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
find
1 parent 79f56e5 commit bf2c169Copy full SHA for bf2c169
2 files changed
README.md
@@ -249,6 +249,8 @@ if [ "$(git rev-parse --abbrev-ref HEAD)" != "main" ]; then
249
exit 1
250
fi
251
252
+git fetch origin --tags
253
+
254
V=$(git describe --tags --abbrev=0 --match "v[0-9]*.[0-9]*.[0-9]*")
255
V=$(tea semverator bump $V $LEVEL)
256
src/hooks/usePantry.ts
@@ -167,7 +167,7 @@ export default function usePantry() {
167
//TODO not very performant due to serial awaits
168
const rv: ReturnType<typeof project>[] = []
169
for await (const pkg of ls()) {
170
- const proj = project(pkg.project)
+ const proj = {...project(pkg.project), ...pkg}
171
if (pkg.project == name) {
172
rv.push(proj)
173
continue
0 commit comments