create-mercato-app 0.6.6-develop.6246.1.85fd30c705 → 0.6.6-develop.6253.1.a8c2b49d90
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.
- package/dist/index.js +2 -1
- package/package.json +1 -1
- package/template/gitattributes +9 -0
package/dist/index.js
CHANGED
|
@@ -1155,7 +1155,8 @@ function buildRegistryConfig(registryUrl) {
|
|
|
1155
1155
|
return configLines.join("\n");
|
|
1156
1156
|
}
|
|
1157
1157
|
var FILE_RENAMES = {
|
|
1158
|
-
gitignore: ".gitignore"
|
|
1158
|
+
gitignore: ".gitignore",
|
|
1159
|
+
gitattributes: ".gitattributes"
|
|
1159
1160
|
};
|
|
1160
1161
|
var SKIP_DIRS = /* @__PURE__ */ new Set(["__tests__", "__integration__"]);
|
|
1161
1162
|
function copyDirRecursive(src, dest, placeholders) {
|
package/package.json
CHANGED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# Normalize all text files to LF on checkout for every platform so Windows
|
|
2
|
+
# (CRLF) clones cannot corrupt files consumed by Docker, shell, and Next.js.
|
|
3
|
+
# A CRLF in docker-compose turns NODE_ENV into "development\r", which disables
|
|
4
|
+
# Next.js dev optimizations and can trigger an OOM compilation loop.
|
|
5
|
+
# text=auto leaves detected binary files (images, fonts, archives) untouched.
|
|
6
|
+
* text=auto eol=lf
|
|
7
|
+
|
|
8
|
+
# Shell scripts must always be LF.
|
|
9
|
+
*.sh text eol=lf
|