-
Notifications
You must be signed in to change notification settings - Fork 32
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
Provide validation .dojorc logic and schema for cli-build-app #324
Conversation
Codecov Report
@@ Coverage Diff @@
## master #324 +/- ##
==========================================
+ Coverage 48.53% 48.76% +0.22%
==========================================
Files 10 10
Lines 684 687 +3
Branches 193 193
==========================================
+ Hits 332 335 +3
Misses 352 352
Continue to review full report at Codecov.
|
"functional" | ||
] | ||
}, | ||
"watch": { |
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 isn't correct any more, it is a boolean.
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.
👍
"base" : { | ||
"type": "string" | ||
}, | ||
"build-time-render": { |
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.
Can we add a couple more options for build-time-render?
renderer: 'jsdom' | 'puppeteer'
discoverPaths: boolean
Type: feature
The following has been addressed in the PR:
prettier
Description:
I closed #223 because it was branching off of
dojo/cli-build-app
rather than my forked repo.This PR provides the necessary schema and validation function for providing validation for the
cli-build-app
package. Users will have their application.dojorc
configs validated before running the build. allowing them to know up front if their configuration is valid.Resolves ##222