-
Notifications
You must be signed in to change notification settings - Fork 0
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
Systemjs depcache output #26
Conversation
src/build-depcache-output/resolve-required-dependency-scripts/index.js
Outdated
Show resolved
Hide resolved
.help('-h, --help') | ||
.parseAndExit() | ||
.then(options => ({ ...options, logging: loggingMap[options.logging] })) | ||
.then(options => new CliOptions(options)) | ||
.then(cliOptions => buildAppOutput(cliOptions)) | ||
.then(cliOptions => { | ||
if(cliOptions.outputDepcache) { |
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.
Could we get a description and/or sample in the README of what this is and does?
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 something to the README. Let me know if it's enough, or more details are needed
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.
That does the job nicely. Thank you
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.
This is a good extension and also a good application of "1, 2, n." I think there's some opportunity identifying some common abstractions when we add an "nth" output type, for example import maps.
Thanks for opening a Pull Request
Changes
Please outline the reason for the changes you are making:
This PR adds the ability to output the scripts in a
depcache
format that's usable with single SPA / systemjs implementations[Change description here]
Are there any breaking changes you are aware of in the PR?
Not directly. Updating arborist a major version, but its downstream change removed node versions we already didn't support.
General Checklist