Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update files as deco version removes blocks #297

Merged
merged 4 commits into from
Jan 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions compat/std/deps.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export type { ConfigShopify as ShopifyAccount } from "https://denopkg.com/deco-sites/std@1.22.9/commerce/shopify/client.ts";
export type { Manifest as StdManifest } from "https://denopkg.com/deco-sites/std@1.22.9/live.gen.ts";
export type { Account as VNDAAccount } from "https://denopkg.com/deco-sites/std@1.22.9/packs/vnda/accounts/vnda.ts";
export type { Account as VTEXAccount } from "https://denopkg.com/deco-sites/std@1.22.9/packs/vtex/accounts/vtex.ts";
export type { ConfigShopify as ShopifyAccount } from "https://denopkg.com/deco-sites/std@1.22.12/commerce/shopify/client.ts";
export type { Manifest as StdManifest } from "https://denopkg.com/deco-sites/std@1.22.12/live.gen.ts";
export type { Account as VNDAAccount } from "https://denopkg.com/deco-sites/std@1.22.12/packs/vnda/accounts/vnda.ts";
export type { Account as VTEXAccount } from "https://denopkg.com/deco-sites/std@1.22.12/packs/vtex/accounts/vtex.ts";
4 changes: 2 additions & 2 deletions deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
"@preact/signals-core": "https://esm.sh/@preact/signals-core@1.3.0",
"std/": "https://deno.land/std@0.204.0/",
"partytown/": "https://deno.land/x/partytown@0.4.8/",
"deco-sites/std/": "https://denopkg.com/deco-sites/std@1.22.11/",
"deco/": "https://denopkg.com/deco-cx/deco@1.51.4/"
"deco-sites/std/": "https://denopkg.com/deco-sites/std@1.22.12/",
"deco/": "https://denopkg.com/deco-cx/deco@1.51.5/"
},
"lock": false,
"tasks": {
Expand Down
2 changes: 1 addition & 1 deletion handlebars/deps.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export { default as HTMLRenderer } from "https://denopkg.com/deco-sites/std@1.21.7/components/HTMLRenderer.tsx";
export { default as HTMLRenderer } from "https://denopkg.com/deco-sites/std@1.22.12/components/HTMLRenderer.tsx";
2 changes: 1 addition & 1 deletion website/flags/everyone.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { FlagObj } from "deco/blocks/flag.ts";
import { asResolved } from "deco/engine/core/resolver.ts";
import Audience, { Route, Routes } from "./audience.ts";
import MatchAlways from "deco/matchers/MatchAlways.ts";
import MatchAlways from "../matchers/always.ts";

export interface EveryoneConfig {
routes?: Routes;
Expand Down
2 changes: 1 addition & 1 deletion website/handlers/proxy.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { isFreshCtx } from "deco/handlers/fresh.ts";
import { isFreshCtx } from "deco/runtime/fresh/context.ts";
import { DecoSiteState } from "deco/mod.ts";
import { Handler } from "std/http/mod.ts";
import { proxySetCookie } from "../../utils/cookie.ts";
Expand Down
2 changes: 1 addition & 1 deletion website/handlers/router.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {
} from "deco/engine/core/resolver.ts";
import { isAwaitable } from "deco/engine/core/utils.ts";
import { FreshContext } from "deco/engine/manifest/manifest.ts";
import { isFreshCtx } from "deco/handlers/fresh.ts";
import { isFreshCtx } from "deco/runtime/fresh/context.ts";
import { DecoSiteState, DecoState } from "deco/types.ts";
import { ConnInfo, Handler } from "std/http/server.ts";
import { Route, Routes } from "../flags/audience.ts";
Expand Down