Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
"build": "yarn workspace patternfly-org build && yarn copy",
"build:extensions": "EXTENSIONS_ONLY=true PRERELEASE=true yarn build",
"build:doc-core": "yarn workspace site build",
"preview:doc-core": "yarn workspace site wrangler:preview",
"build:ts": "yarn workspace patternfly-org build:ts",
"build:ts:watch": "yarn build:ts --watch",
"copy": "rm -rf build/patternfly-org/site && mkdir -p build/patternfly-org && cp -r packages/documentation-site/public build/patternfly-org/site",
Expand Down
3 changes: 3 additions & 0 deletions packages/site/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# generated files
.astro
src/content.ts
8 changes: 5 additions & 3 deletions packages/site/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,15 @@
"build": "patternfly-doc-core build --props",
"serve": "patternfly-doc-core serve",
"sync": "patternfly-doc-core sync",
"init:docs": "patternfly-doc-core init"
"init:docs": "patternfly-doc-core init",
"wrangler:preview": "wrangler pages dev"
},
"dependencies": {
"@patternfly/patternfly-doc-core": "^1.15.3",
"@patternfly/patternfly-doc-core": "^1.15.5",
"astro": "^5.15.9"
},
"devDependencies": {
"tsx": "^4.19.0"
"tsx": "^4.19.0",
"wrangler": "^4.20.0"
}
}
5 changes: 2 additions & 3 deletions packages/site/wrangler.jsonc
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
{
"$schema": "node_modules/wrangler/config-schema.json",
"name": "patternfly-org",
"main": "./dist/_worker.js/index.js",
"compatibility_date": "2025-06-17",
"compatibility_flags": ["nodejs_compat"],
"assets": {
"binding": "ASSETS",
"directory": "./dist"
},
"observability": {
"enabled": true
}
},
"pages_build_output_dir": "./dist/docs"
}
Loading