claude-switch-profile 1.4.4 → 1.4.5
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/package.json +1 -1
- package/scripts/release.js +2 -5
package/package.json
CHANGED
package/scripts/release.js
CHANGED
|
@@ -125,18 +125,15 @@ const main = () => {
|
|
|
125
125
|
|
|
126
126
|
run('git add package.json');
|
|
127
127
|
run(`git commit -m "chore(release): v${newVersion}"`);
|
|
128
|
-
run(`git tag -a v${newVersion} -m "v${newVersion}"`);
|
|
129
|
-
console.log(`✓ Created tag v${newVersion}`);
|
|
130
128
|
|
|
131
129
|
console.log('\nPublishing to npm...');
|
|
132
130
|
run('npm publish');
|
|
133
131
|
console.log(`✓ Published claude-switch-profile@${newVersion}`);
|
|
134
132
|
|
|
135
133
|
run('git push');
|
|
136
|
-
|
|
137
|
-
console.log('✓ Pushed to remote with tags\n');
|
|
134
|
+
console.log('✓ Pushed release commit to remote\n');
|
|
138
135
|
|
|
139
|
-
console.log(`🎉
|
|
136
|
+
console.log(`🎉 Published claude-switch-profile@${newVersion} and pushed release commit successfully!`);
|
|
140
137
|
};
|
|
141
138
|
|
|
142
139
|
try {
|