@adonisjs/core 7.0.0-next.18 → 7.0.0-next.19

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.
@@ -7,7 +7,7 @@ import "../app-B6oge7b3.js";
7
7
  import "../app-DNvbxVWl.js";
8
8
  import "../string-Cx6q_win.js";
9
9
  import "../utils-CtGytdtt.js";
10
- import { n as prettyPrintError } from "../core-C10-w2En.js";
10
+ import { n as prettyPrintError } from "../core-BuPP8K6N.js";
11
11
  import { f as BaseCommand, l as flags, o as args } from "../main-BlJhxJJ2.js";
12
12
  import { t as __decorate } from "../decorate-CJcHOoD-.js";
13
13
  var Add = class extends BaseCommand {
@@ -39,7 +39,18 @@ function indexEntities(entities = {}) {
39
39
  enabled: entities.manifest?.enabled === false ? false : transformers.enabled,
40
40
  source: "config",
41
41
  output: ".adonisjs/client/manifest.d.ts",
42
- include: entities.manifest?.include ?? ["auth.ts"]
42
+ exclude: entities.manifest?.exclude ?? [
43
+ "app.ts",
44
+ "bodyparser.ts",
45
+ "cors.ts",
46
+ "database.ts",
47
+ "encryption.ts",
48
+ "inertia.ts",
49
+ "session.ts",
50
+ "shield.ts",
51
+ "static.ts",
52
+ "vite.ts"
53
+ ]
43
54
  };
44
55
  return { run(_, __, indexGenerator) {
45
56
  if (events.enabled) indexGenerator.add("events", {
@@ -92,8 +103,8 @@ function indexEntities(entities = {}) {
92
103
  source: manifest.source,
93
104
  filter: (filePath, isDirectory) => {
94
105
  if (isDirectory) return true;
95
- if (!manifest.include?.length) return true;
96
- return !!manifest.include.find((include) => filePath.endsWith(include));
106
+ if (!manifest.exclude?.length) return true;
107
+ return !manifest.exclude.find((include) => filePath.endsWith(include));
97
108
  },
98
109
  as(vfs, buffer, ___, helpers) {
99
110
  const configFilesList = vfs.asList();
@@ -7,7 +7,7 @@ import "../../app-B6oge7b3.js";
7
7
  import "../../app-DNvbxVWl.js";
8
8
  import "../../string-Cx6q_win.js";
9
9
  import "../../utils-CtGytdtt.js";
10
- import "../../core-C10-w2En.js";
10
+ import "../../core-BuPP8K6N.js";
11
11
  import "../../main-BlJhxJJ2.js";
12
12
  import "../../logger-0KKSqgPG.js";
13
13
  import "../../main-nojlltNo.js";
@@ -7,7 +7,7 @@ import "../../app-B6oge7b3.js";
7
7
  import "../../app-DNvbxVWl.js";
8
8
  import "../../string-Cx6q_win.js";
9
9
  import "../../utils-CtGytdtt.js";
10
- import "../../core-C10-w2En.js";
10
+ import "../../core-BuPP8K6N.js";
11
11
  import "../../logger-0KKSqgPG.js";
12
12
  import "../../main-nojlltNo.js";
13
13
  import "../../exceptions-DNMesP42.js";
@@ -7,7 +7,7 @@ import "../app-B6oge7b3.js";
7
7
  import "../app-DNvbxVWl.js";
8
8
  import "../string-Cx6q_win.js";
9
9
  import "../utils-CtGytdtt.js";
10
- import "../core-C10-w2En.js";
10
+ import "../core-BuPP8K6N.js";
11
11
  import { AppFactory } from "@adonisjs/application/factories";
12
12
  var StubsFactory = class {
13
13
  #parameters = {};
package/build/index.js CHANGED
@@ -7,6 +7,6 @@ import "./app-B6oge7b3.js";
7
7
  import "./app-DNvbxVWl.js";
8
8
  import "./string-Cx6q_win.js";
9
9
  import "./utils-CtGytdtt.js";
10
- import { n as prettyPrintError, r as indexEntities, t as errors } from "./core-C10-w2En.js";
10
+ import { n as prettyPrintError, r as indexEntities, t as errors } from "./core-BuPP8K6N.js";
11
11
  var inject = container_exports.inject;
12
12
  export { Ignitor, configProvider, errors, indexEntities, inject, prettyPrintError, stubsRoot };
@@ -330,6 +330,6 @@ export type IndexEntitiesConfig = {
330
330
  manifest?: {
331
331
  /** Whether to enable manifest generation */
332
332
  enabled?: boolean;
333
- include?: string[];
333
+ exclude?: string[];
334
334
  };
335
335
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@adonisjs/core",
3
3
  "description": "Core of AdonisJS",
4
- "version": "7.0.0-next.18",
4
+ "version": "7.0.0-next.19",
5
5
  "engines": {
6
6
  "node": ">=24.0.0"
7
7
  },