@moody-djs/prompts 1.0.3 → 1.0.4
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/v2/index.js +0 -2
- package/dist/v2/index.mjs +0 -2
- package/package.json +1 -1
package/dist/v2/index.js
CHANGED
|
@@ -29,7 +29,6 @@ __export(v2_exports, {
|
|
|
29
29
|
module.exports = __toCommonJS(v2_exports);
|
|
30
30
|
|
|
31
31
|
// src/v2/Prompt.ts
|
|
32
|
-
var import_node_util = require("util");
|
|
33
32
|
var import_discord2 = require("discord.js");
|
|
34
33
|
|
|
35
34
|
// src/v2/prompt.types.ts
|
|
@@ -177,7 +176,6 @@ var Prompt = class {
|
|
|
177
176
|
const messageData = await this.unwrap(state.message, this.context);
|
|
178
177
|
const components = await this.unwrap(messageData.components, this.context);
|
|
179
178
|
this.registerComponents(components);
|
|
180
|
-
console.log((0, import_node_util.inspect)(components, { depth: null }));
|
|
181
179
|
const messageOptions = {
|
|
182
180
|
components,
|
|
183
181
|
fetchReply: true,
|
package/dist/v2/index.mjs
CHANGED
|
@@ -2,7 +2,6 @@ var __defProp = Object.defineProperty;
|
|
|
2
2
|
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
3
3
|
|
|
4
4
|
// src/v2/Prompt.ts
|
|
5
|
-
import { inspect } from "util";
|
|
6
5
|
import {
|
|
7
6
|
Collection,
|
|
8
7
|
MessageFlags,
|
|
@@ -158,7 +157,6 @@ var Prompt = class {
|
|
|
158
157
|
const messageData = await this.unwrap(state.message, this.context);
|
|
159
158
|
const components = await this.unwrap(messageData.components, this.context);
|
|
160
159
|
this.registerComponents(components);
|
|
161
|
-
console.log(inspect(components, { depth: null }));
|
|
162
160
|
const messageOptions = {
|
|
163
161
|
components,
|
|
164
162
|
fetchReply: true,
|
package/package.json
CHANGED