replit-tools 1.0.7 → 1.0.9
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/index.js +8 -1
- package/package.json +1 -4
package/index.js
CHANGED
|
@@ -515,7 +515,14 @@ alias claude-pick='claude -r --dangerously-skip-permissions'
|
|
|
515
515
|
|
|
516
516
|
console.log('📝 Updating .gitignore...');
|
|
517
517
|
const gitignorePath = path.join(WORKSPACE, '.gitignore');
|
|
518
|
-
const gitignoreEntries =
|
|
518
|
+
const gitignoreEntries = `
|
|
519
|
+
# Claude/Codex data (added by DATA Tools)
|
|
520
|
+
.claude-persistent/
|
|
521
|
+
.codex-persistent/
|
|
522
|
+
.claude-sessions/
|
|
523
|
+
.persistent-home/
|
|
524
|
+
logs/auth-refresh.log
|
|
525
|
+
`;
|
|
519
526
|
|
|
520
527
|
try {
|
|
521
528
|
if (fs.existsSync(gitignorePath)) {
|
package/package.json
CHANGED
|
@@ -1,14 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "replit-tools",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.9",
|
|
4
4
|
"description": "DATA Tools - One command to set up Claude Code and Codex CLI on Replit with full persistence",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
7
7
|
"replit-tools": "./index.js"
|
|
8
8
|
},
|
|
9
|
-
"scripts": {
|
|
10
|
-
"postinstall": "node index.js"
|
|
11
|
-
},
|
|
12
9
|
"keywords": [
|
|
13
10
|
"replit",
|
|
14
11
|
"claude",
|