veryfront 0.1.1108 → 0.1.1109
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/esm/deno.js
CHANGED
|
@@ -20,7 +20,7 @@ function isPagesApiDirectoryDescendant(relativePath) {
|
|
|
20
20
|
}
|
|
21
21
|
function isPagesLayoutFile(relativePath) {
|
|
22
22
|
const fileName = relativePath.replace(/\\/g, "/").split("/").pop();
|
|
23
|
-
return fileName !== undefined && PAGES_LAYOUT_CANDIDATES.has(fileName);
|
|
23
|
+
return fileName !== undefined && PAGES_LAYOUT_CANDIDATES.has(fileName.toLowerCase());
|
|
24
24
|
}
|
|
25
25
|
function shouldIncludeRoute(path, include, exclude) {
|
|
26
26
|
if (include?.length && !include.some((p) => path.startsWith(p)))
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "veryfront",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1109",
|
|
4
4
|
"description": "The simplest way to build AI-powered apps",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -332,10 +332,10 @@
|
|
|
332
332
|
"@types/react": "19.2.14",
|
|
333
333
|
"@types/react-dom": "19.2.3",
|
|
334
334
|
"ws": "8.21.0",
|
|
335
|
-
"@veryfront/ext-bundler-esbuild": "0.1.
|
|
336
|
-
"@veryfront/ext-content-mdx": "0.1.
|
|
337
|
-
"@veryfront/ext-css-tailwind": "0.1.
|
|
338
|
-
"@veryfront/ext-parser-babel": "0.1.
|
|
335
|
+
"@veryfront/ext-bundler-esbuild": "0.1.1109",
|
|
336
|
+
"@veryfront/ext-content-mdx": "0.1.1109",
|
|
337
|
+
"@veryfront/ext-css-tailwind": "0.1.1109",
|
|
338
|
+
"@veryfront/ext-parser-babel": "0.1.1109"
|
|
339
339
|
},
|
|
340
340
|
"devDependencies": {
|
|
341
341
|
"@types/node": "20.9.0"
|