Skip to content

Commit 3e2ebd1

Browse files
authored
Move landing page out of monorepo root (#1724)
1 parent 2ea3636 commit 3e2ebd1

91 files changed

Lines changed: 884 additions & 1220 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/docs.yml

Lines changed: 0 additions & 54 deletions
This file was deleted.

docs/app.config.ts

Lines changed: 0 additions & 27 deletions
This file was deleted.

docs/package.json

Lines changed: 0 additions & 44 deletions
This file was deleted.

package.json

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@
1313
"scripts": {
1414
"bump": "node scripts/bump.js",
1515
"build": "pnpm run packages:build",
16-
"build:all": "pnpm run packages:build && pnpm run examples:build && pnpm run docs:build",
16+
"build:all": "pnpm run packages:build && pnpm run examples:build && pnpm run lp:build",
1717
"clean": "pnpm run clean:all",
1818
"clean:all": "pnpm run examples:clean && pnpm run packages:clean && pnpm run clean:root",
1919
"clean:root": "pnpx rimraf ./node_modules ./.vinxi/ ./.output/",
20-
"docs:dev": "pnpm --filter solid-start-docs dev",
21-
"docs:build": "pnpm --filter solid-start-docs build",
22-
"docs:start": "pnpm --filter solid-start-docs start",
23-
"docs:clean": "pnpx rimraf ./docs/node_modules ./docs/.vinxi/ ./docs/.output/",
20+
"lp:dev": "pnpm --filter landing-page dev",
21+
"lp:build": "pnpm --filter landing-page build",
22+
"lp:start": "pnpm --filter landing-page start",
23+
"lp:clean": "pnpx rimraf ./packages/landing-page/node_modules ./packages/landing-page/.vinxi/ ./packages/landing-page/.output/",
2424
"examples:build": "pnpm --filter './examples/*' --if-present build",
2525
"examples:clean": "pnpx rimraf ./examples/*/node_modules/ ./examples/*/.vinxi/ ./examples/*/.output/",
2626
"examples:use-workspace-package": "node ./util/use-workspace-package-in-examples.js",
@@ -34,7 +34,6 @@
3434
},
3535
"devDependencies": {
3636
"@changesets/cli": "^2.25.2",
37-
"@cloudflare/kv-asset-handler": "^0.2.0",
3837
"citty": "^0.1.5",
3938
"coveralls": "^3.1.1",
4039
"cypress": "^14.0.0",
@@ -44,10 +43,7 @@
4443
"typescript": "catalog:",
4544
"valibot": "~0.29.0"
4645
},
47-
"dependencies": {
48-
"cross-env": "^7.0.3",
49-
"wrangler": "3.22.1"
50-
},
46+
"dependencies": {},
5147
"engines": {
5248
"pnpm": "^9.0.0",
5349
"node": "^20.5.0"
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import { defineConfig } from "@solidjs/start/config";
2+
3+
export default defineConfig({
4+
// experimental: { islands: true },
5+
server: {
6+
preset: "netlify"
7+
}
8+
});

packages/landing-page/package.json

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"name": "landing-page",
3+
"type": "module",
4+
"private": true,
5+
"scripts": {
6+
"dev": "vinxi dev",
7+
"build": "vinxi build",
8+
"start": "vinxi start"
9+
},
10+
"devDependencies": {
11+
"@kobalte/core": "^0.13.1",
12+
"@kobalte/utils": "^0.9.0",
13+
"@tailwindcss/typography": "^0.5.16",
14+
"autoprefixer": "^10.4.19",
15+
"postcss": "^8.5.1",
16+
"tailwind-merge": "^2.6.0",
17+
"tailwindcss": "^3.4.17",
18+
"tailwindcss-animate": "^1.0.7",
19+
"tinyglobby": "^0.2.2",
20+
"tippy.js": "^6.3.7",
21+
"typescript": "catalog:",
22+
"vinxi": "catalog:",
23+
"vite": "catalog:"
24+
},
25+
"dependencies": {
26+
"@solidjs/meta": "catalog:",
27+
"@solidjs/router": "catalog:",
28+
"@solidjs/start": "latest",
29+
"class-variance-authority": "^0.7.1",
30+
"clsx": "^2.1.1",
31+
"solid-js": "catalog:",
32+
"solid-transition-group": "^0.2.3"
33+
}
34+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
export default {
2+
plugins: {
3+
"tailwindcss/nesting": {},
4+
tailwindcss: {},
5+
autoprefixer: {},
6+
},
7+
};
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)