-
Notifications
You must be signed in to change notification settings - Fork 5
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
Add config file support for @kipper/cli
#519
Merged
Luna-Klatzer
merged 28 commits into
dev-next
from
508-feature-add-config-file-support-for-kippercli
Jun 25, 2024
Merged
Add config file support for @kipper/cli
#519
Luna-Klatzer
merged 28 commits into
dev-next
from
508-feature-add-config-file-support-for-kippercli
Jun 25, 2024
Conversation
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
…validation for resources, files and version
This is for later
…/eslint-plugin`, and prettified project
… for "*" version specifiers
To be extended!
size-limit report 📦
|
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## dev-next #519 +/- ##
============================================
- Coverage 83.85% 82.49% -1.37%
============================================
Files 191 205 +14
Lines 3271 3598 +327
Branches 341 406 +65
============================================
+ Hits 2743 2968 +225
- Misses 383 462 +79
- Partials 145 168 +23 ☔ View full report in Codecov by Sentry. |
8 tasks
…nfig file as they are explicitly defined
Luna-Klatzer
deleted the
508-feature-add-config-file-support-for-kippercli
branch
June 25, 2024 06:09
This was referenced Jun 25, 2024
Merged
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
What type of change does this PR perform?
Summary
Implemented support for Kipper config files which allow the automatic configuration of Kipper projects. Alongside this there is also additional functionality for the
@kipper/cli
, which automatically loads config files and uses them to run or compile a project.Closes #508
List of Changes
@kipper/cli
automatic config loading.Does this PR create new warnings?
None.
Detailed Changelog
Added
@kipper/config
, which implements config file loadingand parsing. This package is used by the Kipper CLI to automatically load and parse config files.
(#502).
@kipper/cli
to automatically create a Kipper project with a config file.(#502).
PromptModule
in@kipper/cli
, which contains all prompt-related functions and classes.loadConfig()
in@kipper/cli
, which loads a config file from the specified path.loadAutoConfig()
in@kipper/cli
, which loads a config file from the current working directory.copyConfigResources()
in@kipper/cli
, which copies the resources from the config file to the output directory.Linked issues or PRs
@kipper/cli
#508