Skip to content

Commit

Permalink
fixes, wserie stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
Fy- committed May 14, 2024
1 parent 8dbdcef commit 1d3cacd
Show file tree
Hide file tree
Showing 43 changed files with 2,887 additions and 3,302 deletions.
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"packages/fws-js",
"packages/fws-vue",
"packages/klb-vue",
"packages/fws-obelix",
"packages/playground"
],
"scripts": {
Expand All @@ -14,11 +15,12 @@
"build:vue": "pnpm -C packages/fws-vue lint:check --fix && pnpm -C packages/fws-vue build",
"build:klb": "pnpm -C packages/klb-vue lint:check --fix && pnpm -C packages/klb-vue build",
"build:obelix": "pnpm -C packages/fws-obelix lint:check --fix && pnpm -C packages/fws-obelix build",
"build": "pnpm run build:types && pnpm run build:js && pnpm run build:vue",
"build": "pnpm run build:types && pnpm run build:js && pnpm run build:vue && pnpm run build:klb && pnpm run build:obelix",
"play": "pnpm -C packages/playground dev",
"build:play": "pnpm run build && pnpm -C packages/playground build"
},
"devDependencies": {
"rimraf": "^5.0.5"
"rimraf": "^5.0.5",
"vue-picture-cropper": "^0.7.0"
}
}
2 changes: 1 addition & 1 deletion packages/fws-js/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@fy-/fws-js",
"version": "0.0.21",
"description": "FWJS is a framework for building web applications FWS - https://fy.to/@G",
"description": "FWJS is a framework for building web applications FWS",
"scripts": {
"build": "tsc && node copyPackage.js"
},
Expand Down
11 changes: 4 additions & 7 deletions packages/fws-obelix/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "@fy-/fws-obelix",
"version": "0.0.01",
"version": "0.0.36",
"description": "BB for FWS",
"author": "Florian 'Fy' Gasquez <[email protected]>",
"license": "MIT",
"repository": {
Expand Down Expand Up @@ -40,8 +41,7 @@
"vue-router": "^4.1.x",
"flowbite": "^2.3.x",
"@fy-/fws-vue": "^0.3.x",
"markdown-it": "^14.x.x",
"md-editor-v3": "^4.x.x"
"markdown-it": "^14.x.x"
},
"scripts": {
"clean": "rimraf dist",
Expand All @@ -53,10 +53,9 @@
"devDependencies": {
"@fy-/fws-js": "workspace:*",
"@fy-/fws-types": "workspace:*",
"@fy-/fws-vue": "workspace:*",
"@fy-/head": "^0.0.39",
"@fy-/fws-vue": "^0.3.67",
"markdown-it": "^14.1.0",
"md-editor-v3": "^4.13.5",
"@headlessui/vue": "^1.7.16",
"@heroicons/vue": "^2.1.1",
"@rushstack/eslint-patch": "^1.6.1",
Expand Down Expand Up @@ -88,7 +87,5 @@
"vue-router": "^4.2.5",
"vue-tsc": "^1.8.26",
"timeago.js": "^4.0.2"

}

}
4 changes: 2 additions & 2 deletions packages/fws-obelix/src/components/BBFooter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ async function getStats() {
}
}
const eventBus = useEventBus();
onMounted(() => {
onMounted(async () => {
await getStats();
eventBus.on("refreshBBProfile", getStats);
getStats();
});
onUnmounted(() => {
eventBus.off("refreshBBProfile", getStats);
Expand Down
Loading

0 comments on commit 1d3cacd

Please sign in to comment.