@metasession.co/devaudit-cli 0.1.70 → 0.1.71
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/sdlc/files/_common/scripts/derive-release-version.sh +7 -0
- package/sdlc/files/_common/scripts/generate-bundled-changes.sh +88 -0
- package/sdlc/files/_common/scripts/generate-bundled-changes.test.sh +183 -0
- package/sdlc/files/_common/skills/sdlc-implementer/SKILL.md +2 -1
- package/sdlc/files/ci/ci.yml.template +29 -0
package/dist/index.js
CHANGED
|
@@ -56,7 +56,7 @@ function emitJsonResult(payload) {
|
|
|
56
56
|
|
|
57
57
|
// package.json
|
|
58
58
|
var package_default = {
|
|
59
|
-
version: "0.1.
|
|
59
|
+
version: "0.1.71"};
|
|
60
60
|
|
|
61
61
|
// src/lib/version.ts
|
|
62
62
|
var CLI_VERSION = package_default.version;
|
|
@@ -2829,7 +2829,7 @@ async function runUpdate(options) {
|
|
|
2829
2829
|
log.log("");
|
|
2830
2830
|
log.log("Next steps for each consuming project:");
|
|
2831
2831
|
log.log(" 1. Review the diff: git diff");
|
|
2832
|
-
log.log(" 2. Commit: git add -A && git commit -m 'chore: sync SDLC templates from DevAudit'");
|
|
2832
|
+
log.log(" 2. Commit: git add -A && git commit -m 'chore: sync SDLC templates from DevAudit [skip ci]'");
|
|
2833
2833
|
log.log(" 3. Push to develop");
|
|
2834
2834
|
log.log("");
|
|
2835
2835
|
log.warn("Do NOT auto-commit \u2014 review the changes first.");
|