Skip to content

Commit

Permalink
Prepare for 0.0.17 embedded
Browse files Browse the repository at this point in the history
  • Loading branch information
brettimus committed Jan 21, 2025
1 parent a46534d commit c4641a8
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/embedded/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fiberplane/embedded",
"version": "0.0.16",
"version": "0.0.17",
"type": "module",
"exports": {
".": {
Expand Down
2 changes: 1 addition & 1 deletion packages/embedded/src/middleware.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { type RouterSpec, createRouter } from "./router.js";

// HACK - We need to manually update the version in the CDN URL when you release a new version
// Eventually we should do this automagically when building the package (and derive the version from the package.json)
const VERSION = "0.0.16";
const VERSION = "0.0.17";
const CDN_URL = `https://cdn.jsdelivr.net/npm/@fiberplane/embedded@${VERSION}/dist/playground/`;

export interface EmbeddedMiddlewareOptions {
Expand Down
1 change: 0 additions & 1 deletion playground/src/Layout/Settings/KeyboardShortcutsModal.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { KeyboardShortcutKey } from "@/components/KeyboardShortcut";
import { Dialog, DialogContent } from "@/components/ui/dialog";
import { Icon } from "@iconify/react";

type ShortcutSection = {
title: string;
Expand Down
4 changes: 3 additions & 1 deletion playground/src/Layout/Settings/SettingsMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,9 @@ export function SettingsMenu({
);
}

function MenuItemLink({
// NOTE - IF we want to link to the Slack community or another doc page for the external api, this would be a good place to do it
// Or we can link to Fiberplane stuff...
export function _MenuItemLinkOld({
href,
icon,
children,
Expand Down

0 comments on commit c4641a8

Please sign in to comment.