diff --git a/package-lock.json b/package-lock.json index 587e012..9b60ef6 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,22 +9,9 @@ "packages/create-mcfly", "templates/basic", "packages/core", - "app" + "site" ] }, - "app": { - "name": "@mcflyjs/landing-page", - "version": "0.0.1", - "license": "MIT", - "dependencies": { - "@mcflyjs/config": "*", - "@mcflyjs/core": "*", - "esprima": "^4.0.1", - "nitropack": "latest", - "ultrahtml": "^1.5.2" - }, - "devDependencies": {} - }, "node_modules/@cloudflare/kv-asset-handler": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/@cloudflare/kv-asset-handler/-/kv-asset-handler-0.3.0.tgz", @@ -456,7 +443,7 @@ "link": true }, "node_modules/@mcflyjs/landing-page": { - "resolved": "app", + "resolved": "site", "link": true }, "node_modules/@netlify/functions": { @@ -3997,6 +3984,19 @@ }, "devDependencies": {} }, + "site": { + "name": "@mcflyjs/landing-page", + "version": "0.0.1", + "license": "MIT", + "dependencies": { + "@mcflyjs/config": "*", + "@mcflyjs/core": "*", + "esprima": "^4.0.1", + "nitropack": "latest", + "ultrahtml": "^1.5.2" + }, + "devDependencies": {} + }, "templates/basic": { "name": "@templates/basic", "version": "0.0.1", @@ -4010,14 +4010,14 @@ } }, "templates/basic/node_modules/@mcflyjs/config": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/@mcflyjs/config/-/config-0.0.1.tgz", - "integrity": "sha512-rcP21TqHNdvEZGxckpwQk6nfSdCSi52jHjMWfeyu37iPUhwZvRWzCqfGpRVW/396sN8j+674JRbZw0mHLq03DQ==" + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/@mcflyjs/config/-/config-0.0.2.tgz", + "integrity": "sha512-OcufnHOebm8PW55sb0tMJV5y0pMnHiJeVZ4B+5Cg3Wjiz1cCk46qsGuGVLoqNTluaBkDNnJL8k6pdswYOp+mTw==" }, "templates/basic/node_modules/@mcflyjs/core": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/@mcflyjs/core/-/core-0.1.1.tgz", - "integrity": "sha512-JsqChhe1+MhxFUT6vUbf7/4J6Phtt2pmSenUfjrywsG0ckMzxRSF9ei9yIThmmxhAEMUkIme/axXFZ3HpM1AKQ==", + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/@mcflyjs/core/-/core-0.1.2.tgz", + "integrity": "sha512-ikkYKzE8NXdNaF5Kj4FmipDs3C3FlhHpKnGJgPwxJPcCnP6xCp8Q3IZoPNj5jjaZ+/zsDqzviPfxb6Z7lJkWtQ==", "dependencies": { "esprima": "^4.0.1", "h3": "^1.8.2", diff --git a/package.json b/package.json index 0439a97..37f6fa9 100644 --- a/package.json +++ b/package.json @@ -11,6 +11,6 @@ "packages/create-mcfly", "templates/basic", "packages/core", - "app" + "site" ] } diff --git a/app/.editorconfig b/site/.editorconfig similarity index 100% rename from app/.editorconfig rename to site/.editorconfig diff --git a/app/.eslintignore b/site/.eslintignore similarity index 100% rename from app/.eslintignore rename to site/.eslintignore diff --git a/app/.eslintrc b/site/.eslintrc similarity index 100% rename from app/.eslintrc rename to site/.eslintrc diff --git a/app/.gitignore b/site/.gitignore similarity index 100% rename from app/.gitignore rename to site/.gitignore diff --git a/app/.npmrc b/site/.npmrc similarity index 100% rename from app/.npmrc rename to site/.npmrc diff --git a/app/README.md b/site/README.md similarity index 100% rename from app/README.md rename to site/README.md diff --git a/app/mcfly.config.ts b/site/mcfly.config.ts similarity index 100% rename from app/mcfly.config.ts rename to site/mcfly.config.ts diff --git a/app/nitro.config.ts b/site/nitro.config.ts similarity index 100% rename from app/nitro.config.ts rename to site/nitro.config.ts diff --git a/app/package.json b/site/package.json similarity index 100% rename from app/package.json rename to site/package.json diff --git a/app/public/favicon.ico b/site/public/favicon.ico similarity index 100% rename from app/public/favicon.ico rename to site/public/favicon.ico diff --git a/app/public/morty.png b/site/public/morty.png similarity index 100% rename from app/public/morty.png rename to site/public/morty.png diff --git a/app/public/prism.css b/site/public/prism.css similarity index 100% rename from app/public/prism.css rename to site/public/prism.css diff --git a/app/public/prism.js b/site/public/prism.js similarity index 100% rename from app/public/prism.js rename to site/public/prism.js diff --git a/app/public/reset.css b/site/public/reset.css similarity index 100% rename from app/public/reset.css rename to site/public/reset.css diff --git a/app/public/robots.txt b/site/public/robots.txt similarity index 100% rename from app/public/robots.txt rename to site/public/robots.txt diff --git a/app/routes/[...index].ts b/site/routes/[...index].ts similarity index 100% rename from app/routes/[...index].ts rename to site/routes/[...index].ts diff --git a/app/src/components/awesome-header.html b/site/src/components/awesome-header.html similarity index 100% rename from app/src/components/awesome-header.html rename to site/src/components/awesome-header.html diff --git a/app/src/components/clickable-text.js b/site/src/components/clickable-text.js similarity index 100% rename from app/src/components/clickable-text.js rename to site/src/components/clickable-text.js diff --git a/app/src/components/code-block.js b/site/src/components/code-block.js similarity index 100% rename from app/src/components/code-block.js rename to site/src/components/code-block.js diff --git a/app/src/components/ignored-different-type.ts b/site/src/components/ignored-different-type.ts similarity index 100% rename from app/src/components/ignored-different-type.ts rename to site/src/components/ignored-different-type.ts diff --git a/app/src/components/my-footer.html b/site/src/components/my-footer.html similarity index 100% rename from app/src/components/my-footer.html rename to site/src/components/my-footer.html diff --git a/app/src/components/my-head.html b/site/src/components/my-head.html similarity index 100% rename from app/src/components/my-head.html rename to site/src/components/my-head.html diff --git a/app/src/components/my-hello-world.js b/site/src/components/my-hello-world.js similarity index 100% rename from app/src/components/my-hello-world.js rename to site/src/components/my-hello-world.js diff --git a/app/src/components/vanilla-hello-world.js b/site/src/components/vanilla-hello-world.js similarity index 100% rename from app/src/components/vanilla-hello-world.js rename to site/src/components/vanilla-hello-world.js diff --git a/app/src/components/warning-block.html b/site/src/components/warning-block.html similarity index 100% rename from app/src/components/warning-block.html rename to site/src/components/warning-block.html diff --git a/app/src/pages/404.html b/site/src/pages/404.html similarity index 100% rename from app/src/pages/404.html rename to site/src/pages/404.html diff --git a/app/src/pages/demo.html b/site/src/pages/demo.html similarity index 100% rename from app/src/pages/demo.html rename to site/src/pages/demo.html diff --git a/app/src/pages/demo/about.html b/site/src/pages/demo/about.html similarity index 100% rename from app/src/pages/demo/about.html rename to site/src/pages/demo/about.html diff --git a/app/src/pages/demo/about/index.html b/site/src/pages/demo/about/index.html similarity index 100% rename from app/src/pages/demo/about/index.html rename to site/src/pages/demo/about/index.html diff --git a/app/src/pages/demo/about/me.html b/site/src/pages/demo/about/me.html similarity index 100% rename from app/src/pages/demo/about/me.html rename to site/src/pages/demo/about/me.html diff --git a/app/src/pages/index.html b/site/src/pages/index.html similarity index 100% rename from app/src/pages/index.html rename to site/src/pages/index.html diff --git a/app/tsconfig.json b/site/tsconfig.json similarity index 100% rename from app/tsconfig.json rename to site/tsconfig.json