Skip to content
Open
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
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,5 @@ size-plugin.json
!.yarn/releases
!.yarn/sdks
!.yarn/versions

*.tsbuildinfo
4 changes: 3 additions & 1 deletion 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",
"ci:build:doc-core": "yarn workspace site ci:build",
"preview:doc-core": "yarn workspace site wrangler:preview",
"build:ts": "yarn workspace patternfly-org build:ts",
"build:ts:watch": "yarn build:ts --watch",
Expand All @@ -28,7 +29,8 @@
"start:doc-core": "yarn workspace site dev",
"uninstall": "find . -name node_modules | xargs rm -rf",
"workflows": "node .github/generate-workflows",
"test:a11y": "yarn workspace patternfly-org test:a11y"
"test:a11y": "yarn workspace patternfly-org test:a11y",
"generate:content": "yarn workspace site generate:content"
},
"workspaces": {
"packages": [
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react';
import { Link as ReachLink, navigate } from '@reach/router';
import { getAsyncComponent } from '../../routes';
const { getAsyncComponent } = require('../../routes');
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't understand why you'd be mixing import and require() in the same file


const Promiseany = (
Promise.any ||
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import React from 'react';
export declare const CompassIntegrationsDemo: React.FunctionComponent;
//# sourceMappingURL=CompassIntegrationsDemo.d.ts.map

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import "@xyflow/react/dist/style.css";
import "./reactFlowOverrides.css";
export declare const CompassReactFlowDemo: () => import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=CompassReactFlowDemo.d.ts.map

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

Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import React from "react";
export declare const RHAiExperienceIcon: React.FunctionComponent;
//# sourceMappingURL=RHAiExperienceIcon.d.ts.map

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

Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import React from "react";
export declare const RHAutomationsLogo: React.FunctionComponent;
//# sourceMappingURL=RHAutomationsLogo.d.ts.map
Loading
Loading