reciple 10.0.38 → 10.0.40

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.
@@ -69,8 +69,7 @@ export const config = {
69
69
  },
70
70
  modules: {
71
71
  directories: ["./modules/**", "./modules"],
72
- ignore: ["_*", ".*", "+*"],
73
- filter: undefined
72
+ ignore: ["./**/{.,+,_}*"]
74
73
  }
75
74
  };
76
75
 
@@ -79,8 +79,7 @@ export const config: Config = {
79
79
  },
80
80
  modules: {
81
81
  directories: ["./modules/**", "./modules"],
82
- ignore: ["_*", ".*", "+*"],
83
- filter: undefined
82
+ ignore: ["./**/{.,+,_}*"]
84
83
  }
85
84
  };
86
85
 
@@ -94,7 +94,7 @@ var CLI = class {
94
94
  (function(_CLI) {
95
95
  _CLI.root = path.join(path.dirname(fileURLToPath(import.meta.url)), "../../../");
96
96
  _CLI.bin = path.join(CLI.root, "dist/bin/reciple.mjs");
97
- _CLI.version = "10.0.38";
97
+ _CLI.version = "10.0.40";
98
98
  function stringifyFlags(flags, command, ignored = []) {
99
99
  let arr = [];
100
100
  for (const [key, value] of Object.entries(flags)) {
@@ -24,13 +24,13 @@ declare class BaseModuleValidator extends Validator {
24
24
  onDisable: Function | undefined;
25
25
  }>>;
26
26
  static resolvable: _sapphire_shapeshift0.UnionValidator<_sapphire_shapeshift0.UndefinedToOptional<{
27
- toJSON: Function;
28
- }> | _sapphire_shapeshift0.UndefinedToOptional<{
29
27
  id: string | undefined;
30
28
  moduleType: ModuleType | undefined;
31
29
  onEnable: Function | undefined;
32
30
  onReady: Function | undefined;
33
31
  onDisable: Function | undefined;
32
+ }> | _sapphire_shapeshift0.UndefinedToOptional<{
33
+ toJSON: Function;
34
34
  }>>;
35
35
  static isValidId(id: unknown): asserts id is string;
36
36
  static isValidModuleType(moduleType: unknown): asserts moduleType is ModuleType;
@@ -74,8 +74,6 @@ declare class CommandModuleValidator extends Validator {
74
74
  execute: Function;
75
75
  }>>;
76
76
  static resolvable: _sapphire_shapeshift0.UnionValidator<_sapphire_shapeshift0.UndefinedToOptional<{
77
- toJSON: Function;
78
- }> | _sapphire_shapeshift0.UndefinedToOptional<{
79
77
  id: string | undefined;
80
78
  moduleType: ModuleType | undefined;
81
79
  onEnable: Function | undefined;
@@ -108,6 +106,8 @@ declare class CommandModuleValidator extends Validator {
108
106
  disabledPreconditions: string[] | undefined;
109
107
  disabledPostconditions: string[] | undefined;
110
108
  execute: Function;
109
+ }> | _sapphire_shapeshift0.UndefinedToOptional<{
110
+ toJSON: Function;
111
111
  }>>;
112
112
  static isValid(value: unknown): asserts value is AnyCommandModuleData;
113
113
  }
@@ -14,10 +14,10 @@ declare class PreconditionModuleValidator extends Validator {
14
14
  execute: Function;
15
15
  }>>;
16
16
  static resolvable: _sapphire_shapeshift0.UnionValidator<_sapphire_shapeshift0.UndefinedToOptional<{
17
+ toJSON: Function;
18
+ }> | _sapphire_shapeshift0.UndefinedToOptional<{
17
19
  scope: CommandType[] | undefined;
18
20
  execute: Function;
19
- }> | _sapphire_shapeshift0.UndefinedToOptional<{
20
- toJSON: Function;
21
21
  }>>;
22
22
  static isValidScope(scope: unknown): asserts scope is CommandType[];
23
23
  static isValidExecute(execute: unknown): asserts execute is (...args: unknown[]) => Promise<void>;
package/dist/package.mjs CHANGED
@@ -1,7 +1,7 @@
1
1
  //#region package.json
2
2
  var package_default = {
3
3
  name: "reciple",
4
- version: "10.0.38",
4
+ version: "10.0.40",
5
5
  license: "LGPL-3.0-only",
6
6
  description: "The CLI for reciple",
7
7
  module: "./dist/index.mjs",
@@ -32,12 +32,12 @@ var package_default = {
32
32
  },
33
33
  repository: {
34
34
  "type": "git",
35
- "url": "https://github.com/thenorthsolution/reciple",
35
+ "url": "https://github.com/reciplejs/reciple",
36
36
  "directory": "packages/reciple"
37
37
  },
38
38
  dependencies: {
39
39
  "@clack/prompts": "^1.1.0",
40
- "@dotenvx/dotenvx": "^1.55.1",
40
+ "@dotenvx/dotenvx": "^1.57.1",
41
41
  "@prtty/print": "catalog:",
42
42
  "@prtty/prtty": "catalog:",
43
43
  "@reciple/utils": "workspace:^",
@@ -58,7 +58,7 @@ var package_default = {
58
58
  "@types/micromatch": "^4.0.10",
59
59
  "@types/node": "catalog:",
60
60
  "nodemon": "^3.1.14",
61
- "rolldown": "^1.0.0-rc.9",
61
+ "rolldown": "^1.0.0-rc.10",
62
62
  "typescript": "catalog:"
63
63
  },
64
64
  peerDependencies: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "reciple",
3
- "version": "10.0.38",
3
+ "version": "10.0.40",
4
4
  "license": "LGPL-3.0-only",
5
5
  "description": "The CLI for reciple",
6
6
  "module": "./dist/index.mjs",
@@ -31,12 +31,12 @@
31
31
  },
32
32
  "repository": {
33
33
  "type": "git",
34
- "url": "https://github.com/thenorthsolution/reciple",
34
+ "url": "https://github.com/reciplejs/reciple",
35
35
  "directory": "packages/reciple"
36
36
  },
37
37
  "dependencies": {
38
38
  "@clack/prompts": "^1.1.0",
39
- "@dotenvx/dotenvx": "^1.55.1",
39
+ "@dotenvx/dotenvx": "^1.57.1",
40
40
  "@prtty/print": "^1.1.3",
41
41
  "@prtty/prtty": "^1.1.2",
42
42
  "@reciple/utils": "^10.0.2",
@@ -57,7 +57,7 @@
57
57
  "@types/micromatch": "^4.0.10",
58
58
  "@types/node": "^25.5.0",
59
59
  "nodemon": "^3.1.14",
60
- "rolldown": "^1.0.0-rc.9",
60
+ "rolldown": "^1.0.0-rc.10",
61
61
  "typescript": "^5.9.3"
62
62
  },
63
63
  "peerDependencies": {