-
Notifications
You must be signed in to change notification settings - Fork 300
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Loading subapps from a different repo #1700
Merged
Merged
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
84fd214
Changes to support loading subapps from a different repo
divyakarippath be86508
Minor updates
divyakarippath 19ce9aa
use absolute path for manifest entries
divyakarippath a65312b
Remove unused dependencies
divyakarippath 773dad1
Fixing tests
divyakarippath bc757e6
support module:true option
divyakarippath adaf55a
fixing eslint error
divyakarippath 62b7aa2
fixing eslint error
divyakarippath 277100a
Merge branch 'subapps_dev' of https://github.com/divyakarippath/elect…
divyakarippath 77cbd8e
minor update
divyakarippath 4ee40d9
remove module:true flag
divyakarippath 992bce2
subapp modules: add support to pass subapp options from main app
divyakarippath 7cb8c23
locking intl-format-cache version to fix the CI tests
divyakarippath File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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 |
---|---|---|
|
@@ -55,6 +55,7 @@ | |
"lodash": "^4.17.10", | ||
"milligram": "^1.3.0", | ||
"react-intl": "^3.11.0", | ||
"intl-format-cache": "4.2.46", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. To fix the build issue |
||
"react-notify-toast": "^0.4.1", | ||
"react-router-config": "^5.1.1" | ||
}, | ||
|
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 |
---|---|---|
|
@@ -62,7 +62,7 @@ | |
"@xarc/app-dev": "^5.3.4", | ||
"electrode-archetype-opt-critical-css": "^1.0.3", | ||
"electrode-archetype-opt-eslint": "^1.0.3", | ||
"electrode-archetype-opt-jest": "^25.0.0", | ||
"electrode-archetype-opt-jest": "^26.0.0", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Changed to match the version with latest publish |
||
"electrode-archetype-opt-less": "^1.0.2", | ||
"electrode-archetype-opt-mocha": "^1.0.3", | ||
"electrode-archetype-opt-phantomjs": "^1.0.2", | ||
|
@@ -80,8 +80,7 @@ | |
"electrode-auto-ssr": "../../packages/electrode-auto-ssr" | ||
}, | ||
"devDependencies": { | ||
"@xarc/app-dev": "../../packages/xarc-app-dev", | ||
"electrode-archetype-opt-jest": "../../packages/electrode-archetype-opt-jest" | ||
"@xarc/app-dev": "../../packages/xarc-app-dev" | ||
} | ||
}, | ||
"optionalDependencies": {} | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added this to support passing subapp options from main app also. This will be useful in use-cases where main app wants to customize the options for individual subapps.