create-reciple 10.0.31 → 10.0.32

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/README.md CHANGED
@@ -35,10 +35,9 @@
35
35
 
36
36
  ```bash
37
37
  npm create reciple@latest
38
- yarn dlx create-reciple@latest
39
- pnpx create-reciple@latest
40
- bunx create-reciple@latest
41
- deno run -A npm:create-reciple@latest
38
+ pnpm create reciple@latest
39
+ bun create reciple@latest
40
+ deno create npm:reciple@latest
42
41
  ```
43
42
 
44
43
  ## Help
package/dist/index.mjs CHANGED
@@ -1,10 +1,8 @@
1
1
  #!/usr/bin/env node
2
2
  import { spawn } from "node:child_process";
3
- import { styleText } from "node:util";
4
3
  import { CLI } from "reciple";
5
4
 
6
5
  //#region src/index.ts
7
- useLogger().warn(`This command is now obsolete. Please use ${styleText(["bold", "yellow"], "reciple create")} instead.`);
8
6
  spawn(process.execPath || "node", [
9
7
  CLI.bin,
10
8
  "create",
@@ -1 +1 @@
1
- {"version":3,"file":"index.mjs","names":[],"sources":["../src/index.ts"],"sourcesContent":["#!/usr/bin/env node\nimport { spawn } from 'node:child_process';\nimport { styleText } from 'node:util';\nimport { CLI } from 'reciple';\n\nuseLogger().warn(`This command is now obsolete. Please use ${styleText(['bold', 'yellow'], 'reciple create')} instead.`);\n\nspawn(process.execPath || 'node', [CLI.bin, 'create', ...process.argv.slice(2)], {\n cwd: process.cwd(),\n env: process.env,\n stdio: 'inherit'\n});\n"],"mappings":";;;;;;AAKA,WAAW,CAAC,KAAK,4CAA4C,UAAU,CAAC,QAAQ,SAAS,EAAE,iBAAiB,CAAC,WAAW;AAExH,MAAM,QAAQ,YAAY,QAAQ;CAAC,IAAI;CAAK;CAAU,GAAG,QAAQ,KAAK,MAAM,EAAE;CAAC,EAAE;CAC7E,KAAK,QAAQ,KAAK;CAClB,KAAK,QAAQ;CACb,OAAO;CACV,CAAC"}
1
+ {"version":3,"file":"index.mjs","names":[],"sources":["../src/index.ts"],"sourcesContent":["#!/usr/bin/env node\nimport { spawn } from 'node:child_process';\nimport { CLI } from 'reciple';\n\nspawn(process.execPath || 'node', [CLI.bin, 'create', ...process.argv.slice(2)], {\n cwd: process.cwd(),\n env: process.env,\n stdio: 'inherit'\n});\n"],"mappings":";;;;;AAIA,MAAM,QAAQ,YAAY,QAAQ;CAAC,IAAI;CAAK;CAAU,GAAG,QAAQ,KAAK,MAAM,EAAE;CAAC,EAAE;CAC7E,KAAK,QAAQ,KAAK;CAClB,KAAK,QAAQ;CACb,OAAO;CACV,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-reciple",
3
- "version": "10.0.31",
3
+ "version": "10.0.32",
4
4
  "license": "LGPL-3.0-only",
5
5
  "description": "Alias for `reciple create`",
6
6
  "bin": "./dist/index.mjs",
@@ -23,7 +23,7 @@
23
23
  "dependencies": {
24
24
  "@reciple/core": "^10.0.1",
25
25
  "discord.js": "^14.25.1",
26
- "reciple": "^10.0.28"
26
+ "reciple": "^10.0.30"
27
27
  },
28
28
  "publishConfig": {
29
29
  "access": "public"