@better-t-stack/template-generator 3.28.0 → 3.28.2
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/core/template-reader.mjs +1 -1
- package/dist/fs-writer.mjs +1 -1
- package/dist/fs-writer.mjs.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/is-binary-path-maAgJE_Q.mjs.map +1 -1
- package/dist/{template-reader-C8MBRmk-.mjs → template-reader-DVuwwW6S.mjs} +7 -1
- package/dist/{template-reader-C8MBRmk-.mjs.map → template-reader-DVuwwW6S.mjs.map} +1 -1
- package/package.json +3 -3
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"is-binary-path-maAgJE_Q.mjs","names":["binaryExtensions","binaryExtensions"],"sources":["../../../node_modules/.bun/binary-extensions@3.1.0/node_modules/binary-extensions/binary-extensions.json","../../../node_modules/.bun/binary-extensions@3.1.0/node_modules/binary-extensions/index.js","../../../node_modules/.bun/is-binary-path@3.0.0/node_modules/is-binary-path/index.js"],"sourcesContent":["","import binaryExtensions from './binary-extensions.json' with {type: 'json'};\n\nexport default binaryExtensions;\n","import path from 'node:path';\nimport binaryExtensions from 'binary-extensions';\n\nconst extensions = new Set(binaryExtensions);\n\nexport default function isBinaryPath(filePath) {\n\treturn extensions.has(path.extname(filePath).slice(1).toLowerCase());\n}\n"],"x_google_ignoreList":[0,1,2],"mappings":";;;AEGA,MAAM,aAAa,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"is-binary-path-maAgJE_Q.mjs","names":["binaryExtensions","binaryExtensions"],"sources":["../../../node_modules/.bun/binary-extensions@3.1.0/node_modules/binary-extensions/binary-extensions.json","../../../node_modules/.bun/binary-extensions@3.1.0/node_modules/binary-extensions/index.js","../../../node_modules/.bun/is-binary-path@3.0.0/node_modules/is-binary-path/index.js"],"sourcesContent":["","import binaryExtensions from './binary-extensions.json' with {type: 'json'};\n\nexport default binaryExtensions;\n","import path from 'node:path';\nimport binaryExtensions from 'binary-extensions';\n\nconst extensions = new Set(binaryExtensions);\n\nexport default function isBinaryPath(filePath) {\n\treturn extensions.has(path.extname(filePath).slice(1).toLowerCase());\n}\n"],"x_google_ignoreList":[0,1,2],"mappings":";;;AEGA,MAAM,aAAa,IAAI,IAAIC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAAA,CAAiB;AAE5C,SAAwB,aAAa,UAAU;AAC9C,QAAO,WAAW,IAAI,KAAK,QAAQ,SAAS,CAAC,MAAM,EAAE,CAAC,aAAa,CAAC"}
|
|
@@ -666,6 +666,9 @@ var require_constants = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
666
666
|
CHAR_UNDERSCORE: 95,
|
|
667
667
|
CHAR_VERTICAL_LINE: 124,
|
|
668
668
|
CHAR_ZERO_WIDTH_NOBREAK_SPACE: 65279,
|
|
669
|
+
/**
|
|
670
|
+
* Create EXTGLOB_CHARS
|
|
671
|
+
*/
|
|
669
672
|
extglobChars(chars) {
|
|
670
673
|
return {
|
|
671
674
|
"!": {
|
|
@@ -695,6 +698,9 @@ var require_constants = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
695
698
|
}
|
|
696
699
|
};
|
|
697
700
|
},
|
|
701
|
+
/**
|
|
702
|
+
* Create GLOB_CHARS
|
|
703
|
+
*/
|
|
698
704
|
globChars(win32) {
|
|
699
705
|
return win32 === true ? WINDOWS_CHARS : POSIX_CHARS;
|
|
700
706
|
}
|
|
@@ -2742,4 +2748,4 @@ async function listTemplates(prefix) {
|
|
|
2742
2748
|
//#endregion
|
|
2743
2749
|
export { loadTemplates as a, loadTemplate as i, getTemplatesRoot as n, listTemplates as r, getBinaryTemplatesRoot as t };
|
|
2744
2750
|
|
|
2745
|
-
//# sourceMappingURL=template-reader-
|
|
2751
|
+
//# sourceMappingURL=template-reader-DVuwwW6S.mjs.map
|