claude-switch-profile 1.4.5 → 1.4.8

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-switch-profile",
3
- "version": "1.4.5",
3
+ "version": "1.4.8",
4
4
  "description": "CLI tool for managing multiple Claude Code profiles",
5
5
  "type": "module",
6
6
  "bin": {
@@ -125,15 +125,18 @@ 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}`);
128
130
 
129
131
  console.log('\nPublishing to npm...');
130
132
  run('npm publish');
131
133
  console.log(`✓ Published claude-switch-profile@${newVersion}`);
132
134
 
133
135
  run('git push');
134
- console.log(' Pushed release commit to remote\n');
136
+ run('git push --tags');
137
+ console.log('✓ Pushed to remote with tags\n');
135
138
 
136
- console.log(`🎉 Published claude-switch-profile@${newVersion} and pushed release commit successfully!`);
139
+ console.log(`🎉 Released v${newVersion} successfully!`);
137
140
  };
138
141
 
139
142
  try {
@@ -1,41 +0,0 @@
1
- exclude_patterns:
2
- - '**/.*'
3
- - '**/__pycache__'
4
- - '**/node_modules'
5
- - '**/target'
6
- - '**/build/assets'
7
- - '**/dist'
8
- - '**/vendor/*.*/*'
9
- - '**/vendor/*'
10
- - '**/.cocoindex_code'
11
- include_patterns:
12
- - '**/*.py'
13
- - '**/*.pyi'
14
- - '**/*.js'
15
- - '**/*.jsx'
16
- - '**/*.ts'
17
- - '**/*.tsx'
18
- - '**/*.mjs'
19
- - '**/*.cjs'
20
- - '**/*.rs'
21
- - '**/*.go'
22
- - '**/*.java'
23
- - '**/*.c'
24
- - '**/*.h'
25
- - '**/*.cpp'
26
- - '**/*.hpp'
27
- - '**/*.cc'
28
- - '**/*.cxx'
29
- - '**/*.hxx'
30
- - '**/*.hh'
31
- - '**/*.cs'
32
- - '**/*.sql'
33
- - '**/*.sh'
34
- - '**/*.bash'
35
- - '**/*.zsh'
36
- - '**/*.md'
37
- - '**/*.mdx'
38
- - '**/*.txt'
39
- - '**/*.rst'
40
- - '**/*.php'
41
- - '**/*.lua'
Binary file