Skip to content

Commit

Permalink
Update files as deco version removes blocks (#297)
Browse files Browse the repository at this point in the history
* Update files as deco version removes blocks

Signed-off-by: Marcos Candeia <marrcooos@gmail.com>

* Fixes license

Signed-off-by: Marcos Candeia <marrcooos@gmail.com>

* Update deco version

Signed-off-by: Marcos Candeia <marrcooos@gmail.com>

* Update to std 1.22.12

Signed-off-by: Marcos Candeia <marrcooos@gmail.com>

---------

Signed-off-by: Marcos Candeia <marrcooos@gmail.com>
  • Loading branch information
mcandeia authored Jan 11, 2024
1 parent 141a285 commit 07b90da
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
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

0 comments on commit 07b90da

Please sign in to comment.