-
Notifications
You must be signed in to change notification settings - Fork 358
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(DemoApp): hot replacement support for demo app (#8471)
* hot replacement support for demo app Signed-off-by: John Swanke <[email protected]> * fix build Signed-off-by: John Swanke <[email protected]> * fix build Signed-off-by: John Swanke <[email protected]> * allow type checking with hot replacement Signed-off-by: John Swanke <[email protected]> * semantic and lint checks Signed-off-by: John Swanke <[email protected]> * fix popper Signed-off-by: John Swanke <[email protected]> * fix popper Signed-off-by: John Swanke <[email protected]> * fix typescript Signed-off-by: John Swanke <[email protected]> * fix yarn.lock Signed-off-by: John Swanke <[email protected]> * ts and lint check only if running :hot Signed-off-by: John Swanke <[email protected]> * ts and lint check only if running :hot Signed-off-by: John Swanke <[email protected]> * fix conflict Signed-off-by: John Swanke <[email protected]> Signed-off-by: John Swanke <[email protected]>
- Loading branch information
Showing
11 changed files
with
1,263 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
node_modules | ||
dist | ||
__tests__ | ||
thirdparty | ||
tsc_out | ||
.out | ||
.changelog | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"extends": "./tsconfig.json", | ||
"compilerOptions": { | ||
"experimentalDecorators": true, | ||
"noImplicitAny": false, | ||
"skipLibCheck": true, | ||
"baseUrl": "src", | ||
"paths": { | ||
"@patternfly/react-core": ["../../../react-core/src/index.ts"], | ||
"@patternfly/react-code-editor": ["../../../react-code-editor/src/index.ts"], | ||
"@patternfly/react-table": ["../../../react-table/src/index.ts"], | ||
"@patternfly/react-topology": ["../../../react-topology/src/index.ts"] | ||
} | ||
}, | ||
"memoryLimit": 4096 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.