Skip to content

Commit

Permalink
Address PR feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
jculvey committed Feb 26, 2024
1 parent c97ed2f commit c9f1634
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .changeset/six-pans-marry.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

feature: Use new `vite-cloudflare` template in Remix projects.

Remix has released a [new official Cloudflare template](https://remix.run/docs/en/main/future/vite#cloudflare-proxy) that uses `getBindingsProxy` under the hood to provide better support for bindings in dev. Remix projects created with C3 will now use this new template.
Remix has released a [new official Cloudflare template](https://remix.run/docs/en/main/future/vite#cloudflare-proxy) that uses `getPlatformProxy` under the hood to provide better support for bindings in dev. Remix projects created with C3 will now use this new template.

Along with this change, projects will use the default vite-based dev command from `create-remix` instead of using `wrangler pages dev` on build output.

Expand Down
4 changes: 2 additions & 2 deletions packages/create-cloudflare/templates/remix/c3.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { logRaw } from "@cloudflare/cli";
import { brandColor } from "@cloudflare/cli/colors";
import { brandColor, dim } from "@cloudflare/cli/colors";
import { spinner } from "@cloudflare/cli/interactive";
import { transformFile } from "helpers/codemod";
import { runFrameworkGenerator } from "helpers/command.js";
Expand Down Expand Up @@ -39,7 +39,7 @@ const configure = async () => {
},
});

s.stop(`${brandColor("updated")} \`${typeDefsPath}\``);
s.stop(`${brandColor("updated")} \`${dim(typeDefsPath)}\``);
};

const config: TemplateConfig = {
Expand Down

0 comments on commit c9f1634

Please sign in to comment.