From 702e228f98d65c5d304b62d7a185a9e5ebc65759 Mon Sep 17 00:00:00 2001 From: Geoff Seemueller Date: Thu, 21 Nov 2024 14:33:52 -0500 Subject: [PATCH] Add .dockerignore to file exclusions This commit adds '**/.dockerignore' to the file exclusions in src/fileExclusions.ts. Additionally, it updates the version in package.json from 1.0.12 to 1.0.13 to reflect this change. --- package.json | 2 +- src/fileExclusions.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index ec99b65..d310808 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "code-tokenizer-md", - "version": "1.0.12", + "version": "1.0.13", "type": "module", "main": "src/index.ts", "module": "src/index.ts", diff --git a/src/fileExclusions.ts b/src/fileExclusions.ts index 0e8b006..779b117 100644 --- a/src/fileExclusions.ts +++ b/src/fileExclusions.ts @@ -9,6 +9,7 @@ export default [ '**/jsconfig*.json', '**/package-lock.json', '**/.prettierignore', + '**/.dockerignore', // Environment and variables '**/.env*', '**/*.vars',