@batijs/build 0.0.628 → 0.0.630

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.
Files changed (2) hide show
  1. package/dist/index.js +3 -1
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -116,7 +116,9 @@ async function transformFileAfterExec(filepath, fileContent) {
116
116
  case ".env.production.local":
117
117
  case ".html":
118
118
  case ".md":
119
- case ".toml": return fileContent;
119
+ case ".toml":
120
+ case "Dockerfile":
121
+ case ".dockerignore": return fileContent;
120
122
  case ".json":
121
123
  case ".jsonc":
122
124
  if (typeof fileContent === "string") return fileContent;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@batijs/build",
3
- "version": "0.0.628",
3
+ "version": "0.0.630",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "keywords": [],
@@ -12,10 +12,10 @@
12
12
  "@batijs/features": "",
13
13
  "@types/node": "^20.19.37",
14
14
  "tsdown": "^0.22.0",
15
- "@batijs/compile": "0.0.628"
15
+ "@batijs/compile": "0.0.630"
16
16
  },
17
17
  "peerDependencies": {
18
- "@batijs/core": "0.0.628"
18
+ "@batijs/core": "0.0.630"
19
19
  },
20
20
  "main": "./dist/index.js",
21
21
  "module": "./dist/index.js",