Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
3b20863
feat: Added icon api endpoints.
dlabaj Feb 4, 2026
a0d3855
feat: Added icons end points.
dlabaj Feb 4, 2026
da36b8d
chore: Updated with a few modifications.
dlabaj Feb 6, 2026
2437572
fixed broken test.
dlabaj Feb 6, 2026
bc103e1
chore: fix lint errors.
dlabaj Feb 6, 2026
e38d0a1
fix: Added prerender step for cloudflare.
dlabaj Feb 6, 2026
0d52a5a
fix: Updated to prerender svgs as well for cloud flare.
dlabaj Feb 6, 2026
a8654f0
Updated to react name as the end point.
dlabaj Feb 11, 2026
b380631
feat: Refactor icon utilities to use @patternfly/react-icons and upda…
dlabaj Feb 17, 2026
2b8c40c
updated to use prerelease to get static icons.
dlabaj Feb 17, 2026
160618a
Updates from review.
dlabaj Feb 17, 2026
9c287db
Updated with review comments.
dlabaj Feb 17, 2026
ce4583d
Fix issue with fs on cloudflare for the /icons endpoint.
dlabaj Feb 18, 2026
695fcf7
fixed borken test, and failing link.
dlabaj Apr 17, 2026
9123ae7
chore: fixed issue with end point that broke when switching to react …
dlabaj Jun 3, 2026
8702c57
fix: resolve route collision between iconSet and iconName endpoints
dlabaj Jun 8, 2026
1f2d9bc
Fix icons API /[iconName] endpoints when deployed to Cloudflare Workers
wise-king-sullyman Jun 9, 2026
e5434ab
Fix build order issue causing /[iconName] api to fail when deployed
wise-king-sullyman Jun 9, 2026
3a6c91f
Revert "Fix icons API /[iconName] endpoints when deployed to Cloudfla…
wise-king-sullyman Jun 9, 2026
615255e
Update deps to 6.5 releases
wise-king-sullyman Jun 10, 2026
44876af
Increase Node ram for build
wise-king-sullyman Jun 10, 2026
9ce4cf0
Update snapshots
wise-king-sullyman Jun 10, 2026
967eaf1
Fix icons API /[iconName] endpoints when deployed to Cloudflare Workers
wise-king-sullyman Jun 10, 2026
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
6 changes: 4 additions & 2 deletions astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,15 @@ export default defineConfig({
vite: {
ssr: {
noExternal: ["@patternfly/*", "react-dropzone"],
external: ["node:fs", "node:path", "fs/promises", "path"]
external: ["fs", "node:fs", "node:path", "path", "fs/promises"]
},
server: {
fs: {
allow: ['./']
}
},
},
adapter: cloudflare()
adapter: cloudflare({
imageService: 'compile'
})
});
174 changes: 90 additions & 84 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 14 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"start": "npm run dev",
"start:cli": "npm run build:cli && node ./dist/cli/cli.js start",
"start:astro": "astro dev",
"build": "npm run build:cli && node --max-old-space-size=4096 ./dist/cli/cli.js build",
"build": "npm run build:cli && node --max-old-space-size=8192 ./dist/cli/cli.js build",
"build:astro": "astro check && astro build",
"build:cli": "tsc --build ./cli/tsconfig.json",
"build:cli:watch": "tsc --build --watch ./cli/tsconfig.json",
Expand Down Expand Up @@ -53,16 +53,16 @@
"@astrojs/node": "^9.4.3",
"@astrojs/react": "^4.3.0",
"@nanostores/react": "^0.8.4",
"@patternfly/ast-helpers": "1.4.0-alpha.190",
"@patternfly/patternfly": "^6.0.0",
"@patternfly/react-code-editor": "^6.2.2",
"@patternfly/react-core": "^6.0.0",
"@patternfly/react-drag-drop": "^6.0.0",
"@patternfly/react-icons": "^6.0.0",
"@patternfly/react-styles": "^6.0.0",
"@patternfly/react-table": "^6.0.0",
"@patternfly/react-tokens": "^6.0.0",
"@patternfly/quickstarts": "^6.0.0",
"@patternfly/ast-helpers": "1.4.0-alpha.381",
"@patternfly/patternfly": "^6.5.2",
"@patternfly/quickstarts": "^6.5.0",
"@patternfly/react-code-editor": "^6.5.1",
"@patternfly/react-core": "^6.5.1",
"@patternfly/react-drag-drop": "^6.5.1",
"@patternfly/react-icons": "^6.5.1",
"@patternfly/react-styles": "^6.5.1",
"@patternfly/react-table": "^6.5.1",
"@patternfly/react-tokens": "^6.5.1",
"@types/react": "^18.3.23",
"@types/react-dom": "^18.3.7",
"astro": "^5.15.9",
Expand All @@ -82,6 +82,8 @@
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.26.0",
"@eslint/js": "^9.16.0",
"@patternfly/react-data-view": "^6.5.0",
"@patternfly/react-user-feedback": "^6.3.0",
"@semantic-release/git": "^10.0.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
Expand Down Expand Up @@ -110,9 +112,7 @@
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript-eslint": "^8.15.0",
"wrangler": "^4.20.0",
"@patternfly/react-user-feedback": "^6.0.0",
"@patternfly/react-data-view": "^6.0.0"
"wrangler": "^4.20.0"
},
"config": {
"commitizen": {
Expand Down
3 changes: 2 additions & 1 deletion public/_routes.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
"/layouts/*",
"/patterns/*",
"/utility-classes/*",
"/extensions/*"
"/extensions/*",
"/api/*/iconsets/*"
]
}
Loading
Loading