@prover-coder-ai/docker-git 1.0.13 → 1.0.15

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prover-coder-ai/docker-git",
3
- "version": "1.0.13",
3
+ "version": "1.0.15",
4
4
  "description": "Minimal Vite-powered TypeScript console starter using Effect",
5
5
  "main": "dist/src/docker-git/main.js",
6
6
  "bin": {
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @prover-coder-ai/docker-git
2
2
 
3
+ ## 1.0.15
4
+
5
+ ### Patch Changes
6
+
7
+ - chore: automated version bump
8
+
9
+ ## 1.0.14
10
+
11
+ ### Patch Changes
12
+
13
+ - chore: automated version bump
14
+
3
15
  ## 1.0.13
4
16
 
5
17
  ### Patch Changes
package/dist/main.js CHANGED
@@ -502,7 +502,7 @@ Env global: ${config.template.envGlobalPath}
502
502
  Env project: ${config.template.envProjectPath}
503
503
  Codex auth: ${config.template.codexAuthPath} -> ${config.template.codexHome}`;
504
504
  const isDockerGitConfig = (entry) => entry.endsWith("docker-git.json");
505
- const shouldSkipDir = (entry) => entry === ".git" || entry === ".orch";
505
+ const shouldSkipDir = (entry) => entry === ".git" || entry === ".orch" || entry === ".docker-git";
506
506
  const processDockerGitEntry = (fs, path, dir, entry, state) => Effect.gen(function* (_) {
507
507
  if (shouldSkipDir(entry)) {
508
508
  return;