Compare commits

..

5 Commits

Author SHA1 Message Date
dswbx a4079804c2 release 0.2.2 2024-12-04 14:49:55 +01:00
dswbx 2bd4b720bb Merge pull request #18 from bknd-io/17-cannot-find-module-node_moduleslodash-esget
fix: lodash-es/* imports causing crash on astro
2024-12-04 14:49:19 +01:00
dswbx f3619bee26 fix lodash-es/* imports causing crash on astro 2024-12-04 14:47:52 +01:00
dswbx c54455870c fix: docs logo 2024-12-03 19:34:14 +01:00
dswbx 20477a655e update docs to navigate to web on logo click 2024-12-03 19:30:16 +01:00
4 changed files with 5 additions and 12 deletions
+1 -1
View File
@@ -3,7 +3,7 @@
"type": "module", "type": "module",
"sideEffects": false, "sideEffects": false,
"bin": "./dist/cli/index.js", "bin": "./dist/cli/index.js",
"version": "0.2.1", "version": "0.2.2",
"scripts": { "scripts": {
"build:all": "bun run build && bun run build:cli", "build:all": "bun run build && bun run build:cli",
"dev": "vite", "dev": "vite",
@@ -12,7 +12,7 @@ import type {
ValidatorType ValidatorType
} from "@rjsf/utils"; } from "@rjsf/utils";
import { toErrorSchema } from "@rjsf/utils"; import { toErrorSchema } from "@rjsf/utils";
import get from "lodash-es/get"; import { get } from "lodash-es";
function removeUndefinedKeys(obj: any): any { function removeUndefinedKeys(obj: any): any {
if (!obj) return obj; if (!obj) return obj;
@@ -14,9 +14,7 @@ import {
getWidget, getWidget,
mergeSchemas mergeSchemas
} from "@rjsf/utils"; } from "@rjsf/utils";
import get from "lodash-es/get"; import { get, isEmpty, omit } from "lodash-es";
import isEmpty from "lodash-es/isEmpty";
import omit from "lodash-es/omit";
import { Component } from "react"; import { Component } from "react";
import { twMerge } from "tailwind-merge"; import { twMerge } from "tailwind-merge";
import { Label } from "../templates/FieldTemplate"; import { Label } from "../templates/FieldTemplate";
+2 -7
View File
@@ -3,7 +3,8 @@
"name": "bknd", "name": "bknd",
"logo": { "logo": {
"dark": "/_assets/logo/bknd_logo_white.svg", "dark": "/_assets/logo/bknd_logo_white.svg",
"light": "/_assets/logo/bknd_logo_black.svg" "light": "/_assets/logo/bknd_logo_black.svg",
"href": "https://bknd.io"
}, },
"theme": "prism", "theme": "prism",
"layout": "sidenav", "layout": "sidenav",
@@ -44,12 +45,6 @@
} }
], ],
"anchors": [ "anchors": [
{
"name": "Web",
"icon": "globe",
"iconType": "solid",
"url": "https://bknd.io"
},
{ {
"name": "Docs", "name": "Docs",
"icon": "book-open-cover", "icon": "book-open-cover",