update .gitignore

This commit is contained in:
2024-10-30 12:10:58 -04:00
parent efb9d63c66
commit 40ff9e420c
4 changed files with 1 additions and 4 deletions

1
.gitignore vendored
View File

@@ -1,3 +1,4 @@
/.idea/
/node_modules/
/dist/
prompt.md

View File

@@ -1,5 +1,3 @@
// src/MarkdownGenerator.js
import path from 'path';
import { execSync } from 'child_process';
import fs from 'fs/promises';

View File

@@ -1,4 +1,3 @@
// src/TokenCleaner.js
export class TokenCleaner {
constructor(customPatterns = [], customSecretPatterns = []) {
this.patterns = [

View File

@@ -1,3 +1,2 @@
// src/index.js
export { TokenCleaner } from './TokenCleaner.js';
export { MarkdownGenerator } from './MarkdownGenerator.js';