@polka-codes/cli 0.1.6 → 0.1.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/dist/index.js +32910 -28
- package/package.json +4 -1
- package/dist/config.d.ts +0 -38
- package/dist/config.d.ts.map +0 -1
- package/dist/config.js +0 -44
- package/dist/config.js.map +0 -1
- package/dist/handlers.d.ts +0 -15
- package/dist/handlers.d.ts.map +0 -1
- package/dist/handlers.js +0 -254
- package/dist/handlers.js.map +0 -1
- package/dist/index.d.ts +0 -2
- package/dist/index.d.ts.map +0 -1
- package/dist/index.js.map +0 -1
- package/dist/runTask.d.ts +0 -10
- package/dist/runTask.d.ts.map +0 -1
- package/dist/runTask.js +0 -107
- package/dist/runTask.js.map +0 -1
- package/dist/utils/listFiles.d.ts +0 -12
- package/dist/utils/listFiles.d.ts.map +0 -1
- package/dist/utils/listFiles.js +0 -100
- package/dist/utils/listFiles.js.map +0 -1
- package/dist/utils/replaceInFile.d.ts +0 -2
- package/dist/utils/replaceInFile.d.ts.map +0 -1
- package/dist/utils/replaceInFile.js +0 -85
- package/dist/utils/replaceInFile.js.map +0 -1
package/dist/utils/listFiles.js
DELETED
|
@@ -1,100 +0,0 @@
|
|
|
1
|
-
import { promises as fs } from 'node:fs';
|
|
2
|
-
import { join, relative, resolve } from 'node:path';
|
|
3
|
-
import ignore from 'ignore';
|
|
4
|
-
/** Default patterns commonly ignored in projects of various languages. */
|
|
5
|
-
const DEFAULT_IGNORES = [
|
|
6
|
-
'__pycache__',
|
|
7
|
-
'.DS_Store',
|
|
8
|
-
'.env',
|
|
9
|
-
'.git',
|
|
10
|
-
'.idea',
|
|
11
|
-
'.svn',
|
|
12
|
-
'.temp',
|
|
13
|
-
'.vscode',
|
|
14
|
-
'coverage',
|
|
15
|
-
'dist',
|
|
16
|
-
'node_modules',
|
|
17
|
-
'out',
|
|
18
|
-
'Thumbs.db',
|
|
19
|
-
];
|
|
20
|
-
/**
|
|
21
|
-
* Reads a `.gitignore` file in `dirPath` (if it exists) and appends its lines
|
|
22
|
-
* to the `basePatterns`. Returns a new array without mutating the original.
|
|
23
|
-
*/
|
|
24
|
-
async function extendPatterns(basePatterns, dirPath) {
|
|
25
|
-
try {
|
|
26
|
-
const gitignorePath = join(dirPath, '.gitignore');
|
|
27
|
-
const content = await fs.readFile(gitignorePath, 'utf8');
|
|
28
|
-
const lines = content.split(/\r?\n/).filter(Boolean);
|
|
29
|
-
return [...basePatterns, ...lines];
|
|
30
|
-
}
|
|
31
|
-
catch {
|
|
32
|
-
// No .gitignore or unreadable
|
|
33
|
-
return basePatterns;
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
|
-
/** Creates an `ignore` instance from the given patterns. */
|
|
37
|
-
function createIgnore(patterns) {
|
|
38
|
-
return ignore().add(patterns);
|
|
39
|
-
}
|
|
40
|
-
/**
|
|
41
|
-
* Lists files under `dirPath` in BFS order, respecting:
|
|
42
|
-
* - A default set of ignores
|
|
43
|
-
* - A root .gitignore under `cwd`
|
|
44
|
-
* - Any .gitignore files in child directories (merged as we go)
|
|
45
|
-
*
|
|
46
|
-
* Returns `[files, limitReached]`:
|
|
47
|
-
* - `files` is the array of file paths (relative to `cwd`)
|
|
48
|
-
* - `limitReached` is `true` if `maxCount` was hit, otherwise `false`
|
|
49
|
-
*/
|
|
50
|
-
export async function listFiles(dirPath, recursive, maxCount, cwd) {
|
|
51
|
-
// Merge default ignores with root .gitignore (if found)
|
|
52
|
-
let rootPatterns = [...DEFAULT_IGNORES];
|
|
53
|
-
try {
|
|
54
|
-
const rootGitignore = await fs.readFile(join(cwd, '.gitignore'), 'utf8');
|
|
55
|
-
const lines = rootGitignore.split(/\r?\n/).filter(Boolean);
|
|
56
|
-
rootPatterns = [...rootPatterns, ...lines];
|
|
57
|
-
}
|
|
58
|
-
catch {
|
|
59
|
-
// No .gitignore at root or unreadable; ignore silently
|
|
60
|
-
}
|
|
61
|
-
// Final results (relative to `cwd`) and indicator if we reached the limit
|
|
62
|
-
const results = [];
|
|
63
|
-
// BFS queue
|
|
64
|
-
// Each entry holds the directory path and the patterns inherited from its parent
|
|
65
|
-
const queue = [{ path: resolve(dirPath), patterns: rootPatterns }];
|
|
66
|
-
// Perform BFS until queue is empty or maxCount is reached
|
|
67
|
-
while (queue.length > 0) {
|
|
68
|
-
// biome-ignore lint/style/noNonNullAssertion: checked above
|
|
69
|
-
const { path: currentPath, patterns: parentPatterns } = queue.shift();
|
|
70
|
-
// Merge parent's patterns with local .gitignore
|
|
71
|
-
const mergedPatterns = await extendPatterns(parentPatterns, currentPath);
|
|
72
|
-
const folderIg = createIgnore(mergedPatterns);
|
|
73
|
-
const entries = await fs.readdir(currentPath, { withFileTypes: true });
|
|
74
|
-
for (const entry of entries) {
|
|
75
|
-
const fullPath = join(currentPath, entry.name);
|
|
76
|
-
// Convert full path to something relative to `cwd`
|
|
77
|
-
const relPath = relative(cwd, fullPath).replace(/\\/g, '/');
|
|
78
|
-
if (folderIg.ignores(relPath)) {
|
|
79
|
-
continue; // Skip ignored entries
|
|
80
|
-
}
|
|
81
|
-
if (entry.isDirectory()) {
|
|
82
|
-
if (recursive) {
|
|
83
|
-
queue.push({ path: fullPath, patterns: mergedPatterns });
|
|
84
|
-
}
|
|
85
|
-
}
|
|
86
|
-
else {
|
|
87
|
-
results.push(relPath);
|
|
88
|
-
if (results.length >= maxCount) {
|
|
89
|
-
results.sort();
|
|
90
|
-
// Stop searching as soon as we reach maxCount
|
|
91
|
-
return [results, true];
|
|
92
|
-
}
|
|
93
|
-
}
|
|
94
|
-
}
|
|
95
|
-
}
|
|
96
|
-
results.sort();
|
|
97
|
-
// If we exhaust the BFS queue, we did not reach maxCount
|
|
98
|
-
return [results, false];
|
|
99
|
-
}
|
|
100
|
-
//# sourceMappingURL=listFiles.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"listFiles.js","sourceRoot":"","sources":["../../src/utils/listFiles.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"replaceInFile.d.ts","sourceRoot":"","sources":["../../src/utils/replaceInFile.ts"],"names":[],"mappings":"AAQA,eAAO,MAAM,aAAa,gBAAuB,MAAM,QAAQ,MAAM,KAAG,OAAO,CAAC,MAAM,CAoFrF,CAAA"}
|
|
@@ -1,85 +0,0 @@
|
|
|
1
|
-
/* Example diff block format:
|
|
2
|
-
<<<<<<< SEARCH
|
|
3
|
-
// original text
|
|
4
|
-
=======
|
|
5
|
-
// replacement text
|
|
6
|
-
>>>>>>> REPLACE
|
|
7
|
-
*/
|
|
8
|
-
export const replaceInFile = async (fileContent, diff) => {
|
|
9
|
-
// Regex to match blocks of the form:
|
|
10
|
-
// <<<<<<< SEARCH
|
|
11
|
-
// (some lines)
|
|
12
|
-
// =======
|
|
13
|
-
// (some lines)
|
|
14
|
-
// >>>>>>> REPLACE
|
|
15
|
-
const blockPattern = /<<<<<+ SEARCH\s*\r?\n([\s\S]*?)\r?\n=======[ \t]*\r?\n([\s\S]*?)\r?\n?>>>>>+ REPLACE/g;
|
|
16
|
-
// Parse diff blocks
|
|
17
|
-
const blocks = [];
|
|
18
|
-
for (let match = blockPattern.exec(diff); match !== null; match = blockPattern.exec(diff)) {
|
|
19
|
-
blocks.push({ search: match[1], replace: match[2] });
|
|
20
|
-
}
|
|
21
|
-
if (blocks.length === 0) {
|
|
22
|
-
throw new Error('No valid diff blocks found.');
|
|
23
|
-
}
|
|
24
|
-
// Helper: try to find the search text in fileContent with progressive relaxation
|
|
25
|
-
const findAndReplace = (content, search, replace) => {
|
|
26
|
-
// 1) Direct exact match
|
|
27
|
-
let index = content.indexOf(search);
|
|
28
|
-
if (index !== -1) {
|
|
29
|
-
return content.slice(0, index) + replace + content.slice(index + search.length);
|
|
30
|
-
}
|
|
31
|
-
// 2) Trim leading/ending whitespace in search and content
|
|
32
|
-
const trimmedSearch = search.trim();
|
|
33
|
-
const trimmedContent = content.trim();
|
|
34
|
-
const offset = content.indexOf(trimmedContent); // to restore original indexing if found
|
|
35
|
-
index = trimmedContent.indexOf(trimmedSearch);
|
|
36
|
-
if (index !== -1) {
|
|
37
|
-
// compute correct absolute index in the original content
|
|
38
|
-
const absoluteIndex = offset + index;
|
|
39
|
-
return content.slice(0, absoluteIndex) + replace + content.slice(absoluteIndex + trimmedSearch.length);
|
|
40
|
-
}
|
|
41
|
-
// 3) Whitespace-agnostic match:
|
|
42
|
-
// Replace all consecutive whitespace in search and content with a single marker
|
|
43
|
-
// to see if there's a match ignoring whitespace diffs
|
|
44
|
-
const normalizedSearch = trimmedSearch.replace(/\s+/g, ' ');
|
|
45
|
-
const normalizedContent = trimmedContent.replace(/\s+/g, ' ');
|
|
46
|
-
index = normalizedContent.indexOf(normalizedSearch);
|
|
47
|
-
if (index !== -1) {
|
|
48
|
-
// Find actual location in the original content. We do a rough approach here:
|
|
49
|
-
// We know the substring's "normalized" start is at 'index' in normalizedContent.
|
|
50
|
-
// A simple way is to walk through the original trimmedContent to find where that occurs.
|
|
51
|
-
// For brevity, we'll do a naive re-scan and hope it's correct in typical cases.
|
|
52
|
-
let runningIndex = 0;
|
|
53
|
-
let actualPos = offset;
|
|
54
|
-
for (const segment of trimmedSearch.replace(/\s+/g, ' ').split(' ')) {
|
|
55
|
-
const segIndex = content.indexOf(segment, actualPos);
|
|
56
|
-
if (segIndex === -1) {
|
|
57
|
-
break; // mismatch, won't happen if we truly found it
|
|
58
|
-
}
|
|
59
|
-
if (runningIndex === 0) {
|
|
60
|
-
// First segment helps define the start
|
|
61
|
-
actualPos = segIndex;
|
|
62
|
-
}
|
|
63
|
-
else {
|
|
64
|
-
// Move just after the segment to keep scanning
|
|
65
|
-
actualPos = segIndex + segment.length;
|
|
66
|
-
}
|
|
67
|
-
runningIndex++;
|
|
68
|
-
}
|
|
69
|
-
// By the time we’re done, actualPos should be the end of the matched substring.
|
|
70
|
-
// We do a length calc for the final replacement index:
|
|
71
|
-
// but we need the total length of trimmedSearch minus whitespace. We'll reconstruct:
|
|
72
|
-
const strippedSearch = trimmedSearch.replace(/\s+/g, '');
|
|
73
|
-
const endPos = actualPos; // The end of the final segment
|
|
74
|
-
const startPos = endPos - strippedSearch.length;
|
|
75
|
-
return content.slice(0, startPos) + replace + content.slice(endPos);
|
|
76
|
-
}
|
|
77
|
-
throw new Error(`Could not find the following text in file:\n${search}`);
|
|
78
|
-
};
|
|
79
|
-
let updatedFile = fileContent;
|
|
80
|
-
for (const { search, replace } of blocks) {
|
|
81
|
-
updatedFile = findAndReplace(updatedFile, search, replace);
|
|
82
|
-
}
|
|
83
|
-
return updatedFile;
|
|
84
|
-
};
|
|
85
|
-
//# sourceMappingURL=replaceInFile.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"replaceInFile.js","sourceRoot":"","sources":["../../src/utils/replaceInFile.ts"],"names":[],"mappings":"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"}
|