-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(build): Update build and deployment process, and improve documen…
…tation - Updated `commitlint.config.js` to include new linting rules for deployment related code. - Revised `README.md` to better document the new deployment process and integrate changed processes. - Modified `src/modules/build/build-and-deploy.ts` to implement the new build and deployment logic based on the improvements detailed in the README. This change improves the overall documentation and process of building the project. The new deployment process is more robust and easier to understand.
- Loading branch information
Showing
3 changed files
with
11 additions
and
4 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 |
---|---|---|
@@ -1,4 +1,8 @@ | ||
module.exports = { | ||
extends: ["@commitlint/config-conventional"], | ||
ignores: [(message) => /chore/m.test(message)], | ||
rules: { | ||
'body-max-line-length': [0, 'always', 100], | ||
"subject-case": [0, "never", ["sentence-case", "start-case", "pascal-case", "upper-case"]], | ||
}, | ||
}; |
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