Update ignore patterns and version bump

Added 'package-lock.json' to the ignore patterns in MarkdownGenerator.js to avoid unnecessary processing. Updated the version in package.json from 1.0.5 to 1.0.6 to reflect this change.
This commit is contained in:
2024-11-21 12:45:04 -05:00
parent d1d72dae28
commit 73b7b2e921
2 changed files with 2 additions and 1 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "code-tokenizer-md",
"version": "1.0.5",
"version": "1.0.6",
"type": "module",
"main": "dist/index.js",
"bin": {

View File

@@ -107,6 +107,7 @@ export class MarkdownGenerator {
'**/*.config.{js,ts}',
'**/tsconfig*.json',
'**/jsconfig*.json',
'**/package-lock.json',
// Environment and variables
'**/.env*',