From 73b7b2e9218c60b35594608d93d2e12ab388c02d Mon Sep 17 00:00:00 2001 From: Geoff Seemueller Date: Thu, 21 Nov 2024 12:45:04 -0500 Subject: [PATCH] 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. --- package.json | 2 +- src/MarkdownGenerator.js | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index c59e25f..735a3f9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "code-tokenizer-md", - "version": "1.0.5", + "version": "1.0.6", "type": "module", "main": "dist/index.js", "bin": { diff --git a/src/MarkdownGenerator.js b/src/MarkdownGenerator.js index a40ff9f..f72365c 100644 --- a/src/MarkdownGenerator.js +++ b/src/MarkdownGenerator.js @@ -107,6 +107,7 @@ export class MarkdownGenerator { '**/*.config.{js,ts}', '**/tsconfig*.json', '**/jsconfig*.json', + '**/package-lock.json', // Environment and variables '**/.env*',