kakaroto-config 1.0.2 → 1.0.3
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/bin/release.js +2 -2
- package/package.json +1 -1
package/bin/release.js
CHANGED
|
@@ -218,8 +218,8 @@ async function main() {
|
|
|
218
218
|
fs.writeFileSync(PACKAGE_JSON, JSON.stringify(pkg, null, 2) + '\n');
|
|
219
219
|
console.log(`Updated package.json: ${currentVersion} → ${newVersion}`);
|
|
220
220
|
|
|
221
|
-
// Git operations -
|
|
222
|
-
if (!execCommandSafe('git', ['add', '.'], 'Staging changes')) {
|
|
221
|
+
// Git operations - selective add to avoid committing session data
|
|
222
|
+
if (!execCommandSafe('git', ['add', 'config/', 'package.json'], 'Staging changes')) {
|
|
223
223
|
rl.close();
|
|
224
224
|
process.exit(1);
|
|
225
225
|
}
|