pasika 0.5.4 → 0.5.5

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.
@@ -1603,6 +1603,7 @@ var MODULE_EXTENSIONS2 = /* @__PURE__ */ new Set([".ts", ".tsx", ".mts", ".cts",
1603
1603
  var ROUTING_FILES = /* @__PURE__ */ new Set([
1604
1604
  "default",
1605
1605
  "error",
1606
+ "global-error",
1606
1607
  "instrumentation",
1607
1608
  "layout",
1608
1609
  "loading",
@@ -1610,7 +1611,15 @@ var ROUTING_FILES = /* @__PURE__ */ new Set([
1610
1611
  "not-found",
1611
1612
  "page",
1612
1613
  "route",
1613
- "template"
1614
+ "template",
1615
+ // File conventions Next.js requires to keep their exact names in src/app/
1616
+ "apple-icon",
1617
+ "icon",
1618
+ "manifest",
1619
+ "opengraph-image",
1620
+ "robots",
1621
+ "sitemap",
1622
+ "twitter-image"
1614
1623
  ]);
1615
1624
  var EXPECTED_SUPPORT_FOLDER = {
1616
1625
  hook: "hooks",
@@ -1744,6 +1753,7 @@ var applicationStructureRule = {
1744
1753
  "src/app/ may contain routing files and framework assets, but ordinary components and support files must live outside src/app/."
1745
1754
  );
1746
1755
  }
1756
+ if (ROUTING_FILES.has(basename) || path13.extname(filename) === ".css") return {};
1747
1757
  }
1748
1758
  const currentFolder = path13.basename(path13.dirname(filename));
1749
1759
  const kinds = exportedKinds(filename);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pasika",
3
- "version": "0.5.4",
3
+ "version": "0.5.5",
4
4
  "description": "Reusable agent setup package",
5
5
  "repository": {
6
6
  "type": "git",