@webflow/webflow-cli 1.21.0 → 1.22.0-next.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. package/dist/cloud-scaffolds/__tests__/fetcher.test.ts +249 -0
  2. package/dist/cloud-scaffolds/__tests__/registry.test.ts +134 -0
  3. package/dist/cloud-scaffolds/fetcher.ts +205 -0
  4. package/dist/cloud-scaffolds/index.ts +19 -0
  5. package/dist/cloud-scaffolds/registry.ts +132 -0
  6. package/dist/cloud-scaffolds/types.ts +68 -0
  7. package/dist/index.js +98 -82
  8. package/dist/index.js.map +1 -1
  9. package/package.json +1 -1
  10. package/dist/cloud-scaffolds/astro/README.md +0 -76
  11. package/dist/cloud-scaffolds/astro/astro.config.mjs +0 -27
  12. package/dist/cloud-scaffolds/astro/gitignore +0 -31
  13. package/dist/cloud-scaffolds/astro/package.json +0 -26
  14. package/dist/cloud-scaffolds/astro/public/favicon.svg +0 -9
  15. package/dist/cloud-scaffolds/astro/src/assets/astro.svg +0 -1
  16. package/dist/cloud-scaffolds/astro/src/assets/background.svg +0 -1
  17. package/dist/cloud-scaffolds/astro/src/components/Welcome.astro +0 -210
  18. package/dist/cloud-scaffolds/astro/src/env.d.ts +0 -12
  19. package/dist/cloud-scaffolds/astro/src/layouts/Layout.astro +0 -32
  20. package/dist/cloud-scaffolds/astro/src/pages/index.astro +0 -73
  21. package/dist/cloud-scaffolds/astro/tsconfig.json +0 -17
  22. package/dist/cloud-scaffolds/astro/webflow.json +0 -13
  23. package/dist/cloud-scaffolds/astro/worker-configuration.d.ts +0 -4
  24. package/dist/cloud-scaffolds/astro/wrangler.json +0 -14
  25. package/dist/cloud-scaffolds/nextjs/README.md +0 -47
  26. package/dist/cloud-scaffolds/nextjs/cloudflare-env.d.ts +0 -5
  27. package/dist/cloud-scaffolds/nextjs/eslint.config.mjs +0 -22
  28. package/dist/cloud-scaffolds/nextjs/gitignore +0 -47
  29. package/dist/cloud-scaffolds/nextjs/next.config.ts +0 -10
  30. package/dist/cloud-scaffolds/nextjs/open-next.config.ts +0 -9
  31. package/dist/cloud-scaffolds/nextjs/package.json +0 -34
  32. package/dist/cloud-scaffolds/nextjs/postcss.config.mjs +0 -5
  33. package/dist/cloud-scaffolds/nextjs/public/file.svg +0 -1
  34. package/dist/cloud-scaffolds/nextjs/public/globe.svg +0 -1
  35. package/dist/cloud-scaffolds/nextjs/public/next.svg +0 -1
  36. package/dist/cloud-scaffolds/nextjs/public/window.svg +0 -1
  37. package/dist/cloud-scaffolds/nextjs/src/app/favicon.ico +0 -0
  38. package/dist/cloud-scaffolds/nextjs/src/app/globals.css +0 -31
  39. package/dist/cloud-scaffolds/nextjs/src/app/layout.tsx +0 -44
  40. package/dist/cloud-scaffolds/nextjs/src/app/page.css +0 -45
  41. package/dist/cloud-scaffolds/nextjs/src/app/page.tsx +0 -30
  42. package/dist/cloud-scaffolds/nextjs/src/webflow.d.ts +0 -14
  43. package/dist/cloud-scaffolds/nextjs/tsconfig.json +0 -30
  44. package/dist/cloud-scaffolds/nextjs/webflow.json +0 -13
  45. package/dist/cloud-scaffolds/nextjs/wrangler.json +0 -14
@@ -1,47 +0,0 @@
1
- # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2
-
3
- # dependencies
4
- /node_modules
5
- /.pnp
6
- .pnp.js
7
- .yarn/install-state.gz
8
-
9
- # testing
10
- /coverage
11
-
12
- # next.js
13
- /.next/
14
- /out/
15
-
16
- # production
17
- /build
18
-
19
- # misc
20
- .DS_Store
21
- *.pem
22
-
23
- # debug
24
- npm-debug.log*
25
- yarn-debug.log*
26
- yarn-error.log*
27
-
28
- # local env files
29
- .env
30
- .env*.local
31
-
32
- # vercel
33
- .vercel
34
-
35
- # typescript
36
- *.tsbuildinfo
37
- next-env.d.ts
38
-
39
- # OpenNext
40
- /.open-next
41
-
42
- # wrangler files
43
- .wrangler
44
- .dev.vars*
45
-
46
- # webflow cli build artifacts
47
- .tmp/
@@ -1,10 +0,0 @@
1
- import type { NextConfig } from "next";
2
-
3
- const nextConfig: NextConfig = {
4
- basePath: "CLOUD_MOUNT_PATH",
5
- };
6
-
7
- export default nextConfig;
8
- // added by create cloudflare to enable calling `getCloudflareContext()` in `next dev`
9
- import { initOpenNextCloudflareForDev } from "@opennextjs/cloudflare";
10
- initOpenNextCloudflareForDev();
@@ -1,9 +0,0 @@
1
- import { defineCloudflareConfig } from "@opennextjs/cloudflare";
2
-
3
- export default defineCloudflareConfig({
4
- // Uncomment to enable R2 cache,
5
- // It should be imported as:
6
- // `import r2IncrementalCache from "@opennextjs/cloudflare/overrides/incremental-cache/r2-incremental-cache";`
7
- // See https://opennext.js.org/cloudflare/caching for more details
8
- // incrementalCache: r2IncrementalCache,
9
- });
@@ -1,34 +0,0 @@
1
- {
2
- "name": "nextjs",
3
- "version": "0.1.0",
4
- "private": true,
5
- "scripts": {
6
- "dev": "next dev",
7
- "build": "next build",
8
- "start": "next start",
9
- "lint": "next lint",
10
- "deploy": "webflow cloud deploy",
11
- "preview": "opennextjs-cloudflare build && opennextjs-cloudflare preview",
12
- "cf-typegen": "wrangler types --env-interface CloudflareEnv cloudflare-env.d.ts"
13
- },
14
- "dependencies": {
15
- "next": "^15.2.8",
16
- "react": "^19.0.1",
17
- "react-dom": "^19.0.0"
18
- },
19
- "devDependencies": {
20
- "@cloudflare/workers-types": "^4.20250415.0",
21
- "@eslint/eslintrc": "^3",
22
- "@opennextjs/cloudflare": "^1.6.5",
23
- "@tailwindcss/postcss": "^4",
24
- "@types/node": "^20",
25
- "@types/react": "^19",
26
- "@types/react-dom": "^19",
27
- "eslint": "^9",
28
- "eslint-config-next": "^15.2.8",
29
- "postcss-import": "^16.1.0",
30
- "tailwindcss": "^4",
31
- "typescript": "^5",
32
- "wrangler": "^4.11.1"
33
- }
34
- }
@@ -1,5 +0,0 @@
1
- const config = {
2
- plugins: ["@tailwindcss/postcss", "postcss-import"],
3
- };
4
-
5
- export default config;
@@ -1 +0,0 @@
1
- <svg fill="none" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.5 13.5V5.41a1 1 0 0 0-.3-.7L9.8.29A1 1 0 0 0 9.08 0H1.5v13.5A2.5 2.5 0 0 0 4 16h8a2.5 2.5 0 0 0 2.5-2.5m-1.5 0v-7H8v-5H3v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1M9.5 5V2.12L12.38 5zM5.13 5h-.62v1.25h2.12V5zm-.62 3h7.12v1.25H4.5zm.62 3h-.62v1.25h7.12V11z" clip-rule="evenodd" fill="#666" fill-rule="evenodd"/></svg>
@@ -1 +0,0 @@
1
- <svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><g clip-path="url(#a)"><path fill-rule="evenodd" clip-rule="evenodd" d="M10.27 14.1a6.5 6.5 0 0 0 3.67-3.45q-1.24.21-2.7.34-.31 1.83-.97 3.1M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16m.48-1.52a7 7 0 0 1-.96 0H7.5a4 4 0 0 1-.84-1.32q-.38-.89-.63-2.08a40 40 0 0 0 3.92 0q-.25 1.2-.63 2.08a4 4 0 0 1-.84 1.31zm2.94-4.76q1.66-.15 2.95-.43a7 7 0 0 0 0-2.58q-1.3-.27-2.95-.43a18 18 0 0 1 0 3.44m-1.27-3.54a17 17 0 0 1 0 3.64 39 39 0 0 1-4.3 0 17 17 0 0 1 0-3.64 39 39 0 0 1 4.3 0m1.1-1.17q1.45.13 2.69.34a6.5 6.5 0 0 0-3.67-3.44q.65 1.26.98 3.1M8.48 1.5l.01.02q.41.37.84 1.31.38.89.63 2.08a40 40 0 0 0-3.92 0q.25-1.2.63-2.08a4 4 0 0 1 .85-1.32 7 7 0 0 1 .96 0m-2.75.4a6.5 6.5 0 0 0-3.67 3.44 29 29 0 0 1 2.7-.34q.31-1.83.97-3.1M4.58 6.28q-1.66.16-2.95.43a7 7 0 0 0 0 2.58q1.3.27 2.95.43a18 18 0 0 1 0-3.44m.17 4.71q-1.45-.12-2.69-.34a6.5 6.5 0 0 0 3.67 3.44q-.65-1.27-.98-3.1" fill="#666"/></g><defs><clipPath id="a"><path fill="#fff" d="M0 0h16v16H0z"/></clipPath></defs></svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 394 80"><path fill="#000" d="M262 0h68.5v12.7h-27.2v66.6h-13.6V12.7H262V0ZM149 0v12.7H94v20.4h44.3v12.6H94v21h55v12.6H80.5V0h68.7zm34.3 0h-17.8l63.8 79.4h17.9l-32-39.7 32-39.6h-17.9l-23 28.6-23-28.6zm18.3 56.7-9-11-27.1 33.7h17.8l18.3-22.7z"/><path fill="#000" d="M81 79.3 17 0H0v79.3h13.6V17l50.2 62.3H81Zm252.6-.4c-1 0-1.8-.4-2.5-1s-1.1-1.6-1.1-2.6.3-1.8 1-2.5 1.6-1 2.6-1 1.8.3 2.5 1a3.4 3.4 0 0 1 .6 4.3 3.7 3.7 0 0 1-3 1.8zm23.2-33.5h6v23.3c0 2.1-.4 4-1.3 5.5a9.1 9.1 0 0 1-3.8 3.5c-1.6.8-3.5 1.3-5.7 1.3-2 0-3.7-.4-5.3-1s-2.8-1.8-3.7-3.2c-.9-1.3-1.4-3-1.4-5h6c.1.8.3 1.6.7 2.2s1 1.2 1.6 1.5c.7.4 1.5.5 2.4.5 1 0 1.8-.2 2.4-.6a4 4 0 0 0 1.6-1.8c.3-.8.5-1.8.5-3V45.5zm30.9 9.1a4.4 4.4 0 0 0-2-3.3 7.5 7.5 0 0 0-4.3-1.1c-1.3 0-2.4.2-3.3.5-.9.4-1.6 1-2 1.6a3.5 3.5 0 0 0-.3 4c.3.5.7.9 1.3 1.2l1.8 1 2 .5 3.2.8c1.3.3 2.5.7 3.7 1.2a13 13 0 0 1 3.2 1.8 8.1 8.1 0 0 1 3 6.5c0 2-.5 3.7-1.5 5.1a10 10 0 0 1-4.4 3.5c-1.8.8-4.1 1.2-6.8 1.2-2.6 0-4.9-.4-6.8-1.2-2-.8-3.4-2-4.5-3.5a10 10 0 0 1-1.7-5.6h6a5 5 0 0 0 3.5 4.6c1 .4 2.2.6 3.4.6 1.3 0 2.5-.2 3.5-.6 1-.4 1.8-1 2.4-1.7a4 4 0 0 0 .8-2.4c0-.9-.2-1.6-.7-2.2a11 11 0 0 0-2.1-1.4l-3.2-1-3.8-1c-2.8-.7-5-1.7-6.6-3.2a7.2 7.2 0 0 1-2.4-5.7 8 8 0 0 1 1.7-5 10 10 0 0 1 4.3-3.5c2-.8 4-1.2 6.4-1.2 2.3 0 4.4.4 6.2 1.2 1.8.8 3.2 2 4.3 3.4 1 1.4 1.5 3 1.5 5h-5.8z"/></svg>
@@ -1 +0,0 @@
1
- <svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill-rule="evenodd" clip-rule="evenodd" d="M1.5 2.5h13v10a1 1 0 0 1-1 1h-11a1 1 0 0 1-1-1zM0 1h16v11.5a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 0 12.5zm3.75 4.5a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5M7 4.75a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0m1.75.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5" fill="#666"/></svg>
@@ -1,31 +0,0 @@
1
- /* If you want tailwind 'base' styles to override 'webflow' styles, re-order the layers */
2
- @layer properties, theme, base, webflow, components, utilities;
3
-
4
- /* Webflow global styles are imported in the 'webflow' layer */
5
- @import "../webflow/css/global.css" layer(webflow);
6
- @import "tailwindcss";
7
-
8
- :root {
9
- --background: #ffffff;
10
- --foreground: #171717;
11
- }
12
-
13
- @theme inline {
14
- --color-background: var(--background);
15
- --color-foreground: var(--foreground);
16
- --font-sans: var(--font-geist-sans);
17
- --font-mono: var(--font-geist-mono);
18
- }
19
-
20
- @media (prefers-color-scheme: dark) {
21
- :root {
22
- --background: #0a0a0a;
23
- --foreground: #ededed;
24
- }
25
- }
26
-
27
- body {
28
- background: var(--background);
29
- color: var(--foreground);
30
- font-family: Arial, Helvetica, sans-serif;
31
- }
@@ -1,44 +0,0 @@
1
- import type { Metadata } from "next";
2
- import { Geist, Geist_Mono, Inter } from "next/font/google";
3
- import "./globals.css";
4
- import { DevLinkProvider } from "@/webflow/DevLinkProvider";
5
-
6
- const inter = Inter({
7
- subsets: ["latin"],
8
- variable: "--font-inter",
9
- });
10
-
11
- const geistSans = Geist({
12
- variable: "--font-geist-sans",
13
- subsets: ["latin"],
14
- });
15
-
16
- const geistMono = Geist_Mono({
17
- variable: "--font-geist-mono",
18
- subsets: ["latin"],
19
- });
20
-
21
- export const metadata: Metadata = {
22
- title: "Create Next App",
23
- description: "Generated by create next app",
24
- };
25
-
26
- export default function RootLayout({
27
- children,
28
- }: Readonly<{
29
- children: React.ReactNode;
30
- }>) {
31
- return (
32
- <html lang="en">
33
- <body
34
- className={`${geistSans.variable} ${geistMono.variable} ${inter.variable} antialiased`}
35
- >
36
- <DevLinkProvider>
37
- {/* Add here any Navbar or Header you want to be present on all pages */}
38
- {children}
39
- {/* Add here any Footer you want to be present on all pages */}
40
- </DevLinkProvider>
41
- </body>
42
- </html>
43
- );
44
- }
@@ -1,45 +0,0 @@
1
- .hero-section {
2
- min-height: 100vh;
3
- display: flex;
4
- align-items: center;
5
- justify-content: center;
6
- }
7
-
8
- .hero-content {
9
- text-align: center;
10
- max-width: 600px;
11
- margin: 0 auto;
12
- }
13
-
14
- .hero-title {
15
- font-size: 2.5rem;
16
- font-weight: 700;
17
- margin-bottom: 1.5rem;
18
- background: linear-gradient(83.21deg, #3245ff 0%, #bc52ee 100%);
19
- -webkit-background-clip: text;
20
- -webkit-text-fill-color: transparent;
21
- background-clip: text;
22
- }
23
-
24
- .hero-description {
25
- margin-bottom: 1.5rem;
26
- }
27
-
28
- .hero-cta {
29
- margin-top: 0.75rem;
30
- }
31
-
32
- .button-primary {
33
- display: inline-block;
34
- padding: 12px 24px;
35
- border-radius: 4px;
36
- background: #146ef5;
37
- color: #ffffff;
38
- text-decoration: none;
39
- box-shadow: 0px 0.5px 1px rgba(0, 0, 0, 0.25), inset 0px 29px 23px -16px rgba(255, 255, 255, 0.04), inset 0px 0.5px 0.5px rgba(255, 255, 255, 0.2);
40
- }
41
-
42
- .button-primary:hover {
43
- background: #2c80fd;
44
- color: #ffffff;
45
- }
@@ -1,30 +0,0 @@
1
- "use client";
2
-
3
- import "./page.css";
4
-
5
- // Import DevLink components from "@/webflow/*"
6
- // import { ComponentName } from "@/webflow/ComponentName";
7
-
8
- export default function Home() {
9
- return (
10
- <section className="hero-section">
11
- <div className="container">
12
- <div className="hero-content">
13
- <h1 className="hero-title">Welcome to Webflow Cloud</h1>
14
- <p className="hero-description">
15
- Your Next.js project is ready. Start building and sync your Webflow
16
- components and design system.
17
- </p>
18
- <div className="hero-cta">
19
- <a
20
- href="https://developers.webflow.com/data-clients/docs/getting-started"
21
- className="button-primary"
22
- >
23
- Get Started
24
- </a>
25
- </div>
26
- </div>
27
- </div>
28
- </section>
29
- );
30
- }
@@ -1,14 +0,0 @@
1
- // Webflow component and CSS type declarations
2
- // These modules will be created by 'webflow devlink export'
3
-
4
- // CSS module declarations
5
- declare module "*.css" {
6
- const content: Record<string, string>;
7
- export default content;
8
- }
9
-
10
- // Webflow component modules
11
- declare module "@/webflow/webflow_modules/*" {
12
- const Component: any;
13
- export default Component;
14
- }
@@ -1,30 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "target": "ES2017",
4
- "lib": ["dom", "dom.iterable", "esnext"],
5
- "allowJs": true,
6
- "skipLibCheck": true,
7
- "strict": true,
8
- "noEmit": true,
9
- "esModuleInterop": true,
10
- "module": "esnext",
11
- "moduleResolution": "bundler",
12
- "resolveJsonModule": true,
13
- "isolatedModules": true,
14
- "jsx": "preserve",
15
- "incremental": true,
16
- "plugins": [
17
- {
18
- "name": "next"
19
- }
20
- ],
21
- "paths": {
22
- "@/*": ["./src/*"]
23
- },
24
- "types": [
25
- "@cloudflare/workers-types/2023-07-01"
26
- ]
27
- },
28
- "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
29
- "exclude": ["node_modules"]
30
- }
@@ -1,13 +0,0 @@
1
- {
2
- "cloud": {
3
- "framework": "nextjs"
4
- },
5
- "devlink-export": {
6
- "rootDir": "./src/webflow",
7
- "components": ".*",
8
- "componentGroups": ".*",
9
- "ts": true,
10
- "cssScopes": true,
11
- "relativeHrefRoot": "/"
12
- }
13
- }
@@ -1,14 +0,0 @@
1
- {
2
- "$schema": "node_modules/wrangler/config-schema.json",
3
- "name": "nextjs",
4
- "main": ".open-next/worker.js",
5
- "compatibility_date": "2025-03-01",
6
- "compatibility_flags": ["nodejs_compat"],
7
- "assets": {
8
- "binding": "ASSETS",
9
- "directory": ".open-next/assets"
10
- },
11
- "observability": {
12
- "enabled": true
13
- }
14
- }