maiass 5.9.39 → 5.9.43
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/README.md +16 -0
- package/lib/version-manager.js +6 -2
- package/package.json +9 -1
package/README.md
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+

|
|
2
|
+
|
|
1
3
|
# `|))` MAIASS (Node.js)
|
|
2
4
|
**Modular AI-Augmented Semantic Scribe** — intelligent Git workflow automation
|
|
3
5
|
|
|
@@ -129,6 +131,20 @@ MAIASS_DEBUG=true # verbose output
|
|
|
129
131
|
|
|
130
132
|
Issues and PRs welcome. See [docs/development.md](docs/development.md) to get started.
|
|
131
133
|
|
|
134
|
+
## 🙏 Acknowledgments
|
|
135
|
+
|
|
136
|
+
- Git community for workflow inspiration
|
|
137
|
+
- All contributors and testers
|
|
138
|
+
|
|
132
139
|
## License
|
|
133
140
|
|
|
134
141
|
[GNU General Public License v3.0](LICENSE)
|
|
142
|
+
|
|
143
|
+
---
|
|
144
|
+
|
|
145
|
+
**Made with ❤️ for developers who want to automate versioning, changelogs, and commit messages.**
|
|
146
|
+
|
|
147
|
+
## 💸 Support MAIASS
|
|
148
|
+
|
|
149
|
+
[](https://github.com/sponsors/vsmash)
|
|
150
|
+
[](https://ko-fi.com/myass)
|
package/lib/version-manager.js
CHANGED
|
@@ -803,8 +803,12 @@ async function updateSecondaryVersionFiles(newVersion, config, dryRun = false) {
|
|
|
803
803
|
|
|
804
804
|
if (!config) return results;
|
|
805
805
|
|
|
806
|
-
// Parse pipe-separated config
|
|
807
|
-
const fileConfigs = config
|
|
806
|
+
// Parse pipe-separated config; \| is an escaped literal pipe within a pattern
|
|
807
|
+
const fileConfigs = config
|
|
808
|
+
.replace(/\\\|/g, '\x00') // stash escaped pipes
|
|
809
|
+
.split('|')
|
|
810
|
+
.map(c => c.replace(/\x00/g, '|')) // restore within each entry
|
|
811
|
+
.filter(c => c.trim());
|
|
808
812
|
|
|
809
813
|
for (const fileConfig of fileConfigs) {
|
|
810
814
|
try {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "maiass",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "5.9.
|
|
4
|
+
"version": "5.9.43",
|
|
5
5
|
"description": "MAIASS - Modular AI-Augmented Semantic Scribe - Intelligent Git workflow automation",
|
|
6
6
|
"main": "maiass.mjs",
|
|
7
7
|
"bin": {
|
|
@@ -10,6 +10,14 @@
|
|
|
10
10
|
},
|
|
11
11
|
"author": "Velvary Pty Ltd",
|
|
12
12
|
"license": "GPL-3.0-only",
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "https://github.com/vsmash/nodemaiass.git"
|
|
16
|
+
},
|
|
17
|
+
"homepage": "https://github.com/vsmash/nodemaiass#readme",
|
|
18
|
+
"bugs": {
|
|
19
|
+
"url": "https://github.com/vsmash/nodemaiass/issues"
|
|
20
|
+
},
|
|
13
21
|
"files": [
|
|
14
22
|
"lib/",
|
|
15
23
|
"maiass.mjs",
|