@fedify/init 2.0.9 → 2.0.11

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.
Files changed (53) hide show
  1. package/dist/action/{configs.mjs → configs.js} +6 -6
  2. package/dist/action/{deps.mjs → deps.js} +4 -4
  3. package/dist/action/{env.mjs → env.js} +2 -2
  4. package/dist/action/{install.mjs → install.js} +1 -1
  5. package/dist/action/{mod.d.mts → mod.d.ts} +2 -2
  6. package/dist/action/{mod.mjs → mod.js} +11 -11
  7. package/dist/action/{notice.mjs → notice.js} +1 -1
  8. package/dist/action/{patch.mjs → patch.js} +6 -6
  9. package/dist/action/{precommand.mjs → precommand.js} +1 -1
  10. package/dist/action/{recommend.mjs → recommend.js} +4 -4
  11. package/dist/action/{set.mjs → set.js} +3 -3
  12. package/dist/action/{templates.mjs → templates.js} +2 -2
  13. package/dist/ask/{dir.mjs → dir.js} +2 -2
  14. package/dist/ask/{kv.mjs → kv.js} +3 -3
  15. package/dist/ask/{mod.mjs → mod.js} +5 -5
  16. package/dist/ask/{mq.mjs → mq.js} +3 -3
  17. package/dist/ask/{pm.mjs → pm.js} +3 -3
  18. package/dist/ask/{wf.mjs → wf.js} +2 -2
  19. package/dist/{command.mjs → command.js} +1 -1
  20. package/dist/{const.mjs → const.js} +2 -2
  21. package/dist/{deno.mjs → deno.js} +1 -1
  22. package/dist/{lib.mjs → lib.js} +6 -6
  23. package/dist/mod.d.ts +3 -0
  24. package/dist/mod.js +3 -0
  25. package/dist/test/{action.mjs → action.js} +5 -5
  26. package/dist/test/{create.mjs → create.js} +4 -4
  27. package/dist/test/{db.mjs → db.js} +3 -3
  28. package/dist/test/{fill.mjs → fill.js} +1 -1
  29. package/dist/test/{lookup.mjs → lookup.js} +3 -3
  30. package/dist/test/{mod.mjs → mod.js} +2 -2
  31. package/dist/test/{run.mjs → run.js} +3 -3
  32. package/dist/test/{utils.mjs → utils.js} +1 -1
  33. package/dist/{types.d.mts → types.d.ts} +3 -3
  34. package/dist/{webframeworks.mjs → webframeworks.js} +3 -3
  35. package/package.json +3 -1
  36. package/dist/mod.d.mts +0 -3
  37. package/dist/mod.mjs +0 -3
  38. /package/dist/action/{const.mjs → const.js} +0 -0
  39. /package/dist/action/{dir.mjs → dir.js} +0 -0
  40. /package/dist/action/{utils.mjs → utils.js} +0 -0
  41. /package/dist/{command.d.mts → command.d.ts} +0 -0
  42. /package/dist/{const.d.mts → const.d.ts} +0 -0
  43. /package/dist/json/{biome.mjs → biome.js} +0 -0
  44. /package/dist/json/{db-to-check.mjs → db-to-check.js} +0 -0
  45. /package/dist/json/{kv.mjs → kv.js} +0 -0
  46. /package/dist/json/{mq.mjs → mq.js} +0 -0
  47. /package/dist/json/{pm.mjs → pm.js} +0 -0
  48. /package/dist/json/{rt.mjs → rt.js} +0 -0
  49. /package/dist/json/{vscode-settings-for-deno.mjs → vscode-settings-for-deno.js} +0 -0
  50. /package/dist/json/{vscode-settings.mjs → vscode-settings.js} +0 -0
  51. /package/dist/test/{mod.d.mts → mod.d.ts} +0 -0
  52. /package/dist/{utils.d.mts → utils.d.ts} +0 -0
  53. /package/dist/{utils.mjs → utils.js} +0 -0
@@ -1,9 +1,9 @@
1
- import { merge } from "../utils.mjs";
2
- import biome_default from "../json/biome.mjs";
3
- import vscode_settings_for_deno_default from "../json/vscode-settings-for-deno.mjs";
4
- import vscode_settings_default from "../json/vscode-settings.mjs";
5
- import { getPackagesPath } from "./const.mjs";
6
- import { getDependencies, getDevDependencies, joinDepsReg } from "./deps.mjs";
1
+ import { merge } from "../utils.js";
2
+ import biome_default from "../json/biome.js";
3
+ import vscode_settings_for_deno_default from "../json/vscode-settings-for-deno.js";
4
+ import vscode_settings_default from "../json/vscode-settings.js";
5
+ import { getPackagesPath } from "./const.js";
6
+ import { getDependencies, getDevDependencies, joinDepsReg } from "./deps.js";
7
7
  import { uniq } from "es-toolkit";
8
8
  import { realpathSync } from "node:fs";
9
9
  import { join, relative } from "node:path";
@@ -1,7 +1,7 @@
1
- import { merge, replace } from "../utils.mjs";
2
- import { PACKAGE_VERSION } from "../lib.mjs";
3
- import { getPackagesPath } from "./const.mjs";
4
- import { isDeno } from "./utils.mjs";
1
+ import { merge, replace } from "../utils.js";
2
+ import { PACKAGE_VERSION } from "../lib.js";
3
+ import { getPackagesPath } from "./const.js";
4
+ import { isDeno } from "./utils.js";
5
5
  import { always, entries, filter, fromEntries, map, pipe, when } from "@fxts/core";
6
6
  import { join as join$1 } from "node:path";
7
7
  //#region src/action/deps.ts
@@ -1,5 +1,5 @@
1
- import { notEmpty } from "../utils.mjs";
2
- import { noticeConfigEnv, noticeEnvKeyValue } from "./notice.mjs";
1
+ import { notEmpty } from "../utils.js";
2
+ import { noticeConfigEnv, noticeEnvKeyValue } from "./notice.js";
3
3
  import { entries, forEach, pipeLazy, tap, toArray, when } from "@fxts/core";
4
4
  //#region src/action/env.ts
5
5
  const recommendConfigEnv = pipeLazy((data) => data.env, entries, toArray, when(notEmpty, tap(noticeConfigEnv)), forEach(noticeEnvKeyValue));
@@ -1,4 +1,4 @@
1
- import { CommandError, runSubCommand } from "../utils.mjs";
1
+ import { CommandError, runSubCommand } from "../utils.js";
2
2
  import { apply, pipe } from "@fxts/core";
3
3
  //#region src/action/install.ts
4
4
  const installDependencies = (data) => pipe(data, ({ packageManager, dir }) => [[packageManager, "install"], { cwd: dir }], apply(runSubCommand)).catch((e) => {
@@ -1,5 +1,5 @@
1
- import { InitCommand } from "../command.mjs";
2
- import { InitCommandData } from "../types.mjs";
1
+ import { InitCommand } from "../command.js";
2
+ import { InitCommandData } from "../types.js";
3
3
 
4
4
  //#region src/action/mod.d.ts
5
5
  /**
@@ -1,14 +1,14 @@
1
- import { set } from "../utils.mjs";
2
- import askOptions from "../ask/mod.mjs";
3
- import { makeDirIfHyd } from "./dir.mjs";
4
- import { drawDinosaur, noticeHowToRun, noticeOptions, noticePrecommand } from "./notice.mjs";
5
- import recommendConfigEnv from "./env.mjs";
6
- import installDependencies from "./install.mjs";
7
- import { hasCommand, isDry } from "./utils.mjs";
8
- import { patchFiles, recommendPatchFiles } from "./patch.mjs";
9
- import runPrecommand from "./precommand.mjs";
10
- import recommendDependencies from "./recommend.mjs";
11
- import setData from "./set.mjs";
1
+ import { set } from "../utils.js";
2
+ import askOptions from "../ask/mod.js";
3
+ import { makeDirIfHyd } from "./dir.js";
4
+ import { drawDinosaur, noticeHowToRun, noticeOptions, noticePrecommand } from "./notice.js";
5
+ import recommendConfigEnv from "./env.js";
6
+ import installDependencies from "./install.js";
7
+ import { hasCommand, isDry } from "./utils.js";
8
+ import { patchFiles, recommendPatchFiles } from "./patch.js";
9
+ import runPrecommand from "./precommand.js";
10
+ import recommendDependencies from "./recommend.js";
11
+ import setData from "./set.js";
12
12
  import { pipe, tap, unless, when } from "@fxts/core";
13
13
  import process from "node:process";
14
14
  //#region src/action/mod.ts
@@ -1,4 +1,4 @@
1
- import { colors, printMessage } from "../utils.mjs";
1
+ import { colors, printMessage } from "../utils.js";
2
2
  import { text } from "@optique/core";
3
3
  import { flow } from "es-toolkit";
4
4
  //#region src/action/notice.ts
@@ -1,9 +1,9 @@
1
- import { formatJson, merge, replaceAll, set } from "../utils.mjs";
2
- import { createFile, throwUnlessNotExists } from "../lib.mjs";
3
- import { displayFile, noticeFilesToCreate, noticeFilesToInsert } from "./notice.mjs";
4
- import { joinDir, stringifyEnvs } from "./utils.mjs";
5
- import { devToolConfigs, loadDenoConfig, loadPackageJson, loadTsConfig } from "./configs.mjs";
6
- import { getImports, loadFederation, loadLogging } from "./templates.mjs";
1
+ import { formatJson, merge, replaceAll, set } from "../utils.js";
2
+ import { createFile, throwUnlessNotExists } from "../lib.js";
3
+ import { displayFile, noticeFilesToCreate, noticeFilesToInsert } from "./notice.js";
4
+ import { joinDir, stringifyEnvs } from "./utils.js";
5
+ import { devToolConfigs, loadDenoConfig, loadPackageJson, loadTsConfig } from "./configs.js";
6
+ import { getImports, loadFederation, loadLogging } from "./templates.js";
7
7
  import { always, apply, entries, map, pipe, pipeLazy, tap } from "@fxts/core";
8
8
  import { toMerged } from "es-toolkit";
9
9
  import { readFile } from "node:fs/promises";
@@ -1,4 +1,4 @@
1
- import { CommandError, exit, runSubCommand } from "../utils.mjs";
1
+ import { CommandError, exit, runSubCommand } from "../utils.js";
2
2
  //#region src/action/precommand.ts
3
3
  /**
4
4
  * Runs the precommand specified in the initializer to set up the project.
@@ -1,7 +1,7 @@
1
- import { notEmpty } from "../utils.mjs";
2
- import { noticeDeps, noticeDepsIfExist, noticeDevDepsIfExist } from "./notice.mjs";
3
- import { isDeno } from "./utils.mjs";
4
- import { getDependencies, getDevDependencies } from "./deps.mjs";
1
+ import { notEmpty } from "../utils.js";
2
+ import { noticeDeps, noticeDepsIfExist, noticeDevDepsIfExist } from "./notice.js";
3
+ import { isDeno } from "./utils.js";
4
+ import { getDependencies, getDevDependencies } from "./deps.js";
5
5
  import { map, peek, pipeLazy, tap, unless, when } from "@fxts/core";
6
6
  //#region src/action/recommend.ts
7
7
  const recommendDeps = pipeLazy(getDependencies, Object.entries, when(notEmpty, tap(noticeDepsIfExist)), peek(noticeDeps));
@@ -1,6 +1,6 @@
1
- import { merge, set } from "../utils.mjs";
2
- import { kvStores, messageQueues } from "../lib.mjs";
3
- import webFrameworks from "../webframeworks.mjs";
1
+ import { merge, set } from "../utils.js";
2
+ import { kvStores, messageQueues } from "../lib.js";
3
+ import webFrameworks from "../webframeworks.js";
4
4
  import { pipe } from "@fxts/core";
5
5
  import { existsSync } from "node:fs";
6
6
  import { realpath } from "node:fs/promises";
@@ -1,5 +1,5 @@
1
- import { replace } from "../utils.mjs";
2
- import { readTemplate } from "../lib.mjs";
1
+ import { replace } from "../utils.js";
2
+ import { readTemplate } from "../lib.js";
3
3
  import { entries, join, map, pipe } from "@fxts/core";
4
4
  import { toMerged } from "es-toolkit";
5
5
  //#region src/action/templates.ts
@@ -1,5 +1,5 @@
1
- import { getCwd, getOsType, runSubCommand } from "../utils.mjs";
2
- import { isDirectoryEmpty, logger } from "../lib.mjs";
1
+ import { getCwd, getOsType, runSubCommand } from "../utils.js";
2
+ import { isDirectoryEmpty, logger } from "../lib.js";
3
3
  import { identity, pipe, when } from "@fxts/core";
4
4
  import { input } from "@inquirer/prompts";
5
5
  import { message } from "@optique/core/message";
@@ -1,6 +1,6 @@
1
- import { printErrorMessage } from "../utils.mjs";
2
- import { isTest, kvStores } from "../lib.mjs";
3
- import { KV_STORE } from "../const.mjs";
1
+ import { printErrorMessage } from "../utils.js";
2
+ import { isTest, kvStores } from "../lib.js";
3
+ import { KV_STORE } from "../const.js";
4
4
  import { select } from "@inquirer/prompts";
5
5
  import { pipe, tap, throwError, unless, when } from "@fxts/core/index.js";
6
6
  //#region src/ask/kv.ts
@@ -1,8 +1,8 @@
1
- import fillDir from "./dir.mjs";
2
- import fillKvStore from "./kv.mjs";
3
- import fillMessageQueue from "./mq.mjs";
4
- import fillPackageManager from "./pm.mjs";
5
- import fillWebFramework from "./wf.mjs";
1
+ import fillDir from "./dir.js";
2
+ import fillKvStore from "./kv.js";
3
+ import fillMessageQueue from "./mq.js";
4
+ import fillPackageManager from "./pm.js";
5
+ import fillWebFramework from "./wf.js";
6
6
  import { pipe } from "@fxts/core";
7
7
  //#region src/ask/mod.ts
8
8
  const askOptions = (options) => pipe(options, fillDir, fillWebFramework, fillPackageManager, fillMessageQueue, fillKvStore);
@@ -1,6 +1,6 @@
1
- import { printErrorMessage } from "../utils.mjs";
2
- import { isTest, messageQueues } from "../lib.mjs";
3
- import { MESSAGE_QUEUE } from "../const.mjs";
1
+ import { printErrorMessage } from "../utils.js";
2
+ import { isTest, messageQueues } from "../lib.js";
3
+ import { MESSAGE_QUEUE } from "../const.js";
4
4
  import { select } from "@inquirer/prompts";
5
5
  import { pipe, tap, throwError, unless, when } from "@fxts/core/index.js";
6
6
  //#region src/ask/mq.ts
@@ -1,6 +1,6 @@
1
- import { getInstallUrl, isPackageManagerAvailable, kvStores, messageQueues, packageManagers, runtimes } from "../lib.mjs";
2
- import { PACKAGE_MANAGER } from "../const.mjs";
3
- import webFrameworks from "../webframeworks.mjs";
1
+ import { getInstallUrl, isPackageManagerAvailable, kvStores, messageQueues, packageManagers, runtimes } from "../lib.js";
2
+ import { PACKAGE_MANAGER } from "../const.js";
3
+ import webFrameworks from "../webframeworks.js";
4
4
  import { pipe, when } from "@fxts/core";
5
5
  import { select } from "@inquirer/prompts";
6
6
  import { message } from "@optique/core/message";
@@ -1,5 +1,5 @@
1
- import { WEB_FRAMEWORK } from "../const.mjs";
2
- import webFrameworks from "../webframeworks.mjs";
1
+ import { WEB_FRAMEWORK } from "../const.js";
2
+ import webFrameworks from "../webframeworks.js";
3
3
  import { select } from "@inquirer/prompts";
4
4
  //#region src/ask/wf.ts
5
5
  /**
@@ -1,4 +1,4 @@
1
- import { KV_STORE, MESSAGE_QUEUE, PACKAGE_MANAGER, WEB_FRAMEWORK } from "./const.mjs";
1
+ import { KV_STORE, MESSAGE_QUEUE, PACKAGE_MANAGER, WEB_FRAMEWORK } from "./const.js";
2
2
  import { path } from "@optique/run";
3
3
  import { argument, choice, command, constant, merge, message, multiple, object, option, optionNames, optional, or } from "@optique/core";
4
4
  //#region src/command.ts
@@ -1,5 +1,5 @@
1
- import kv_default from "./json/kv.mjs";
2
- import mq_default from "./json/mq.mjs";
1
+ import kv_default from "./json/kv.js";
2
+ import mq_default from "./json/mq.js";
3
3
  //#region src/const.ts
4
4
  /** All supported package manager identifiers, in display order. */
5
5
  const PACKAGE_MANAGER = [
@@ -1,4 +1,4 @@
1
1
  //#region deno.json
2
- var version = "2.0.9";
2
+ var version = "2.0.11";
3
3
  //#endregion
4
4
  export { version };
@@ -1,9 +1,9 @@
1
- import { isNotFoundError, runSubCommand } from "./utils.mjs";
2
- import { version } from "./deno.mjs";
3
- import kv_default from "./json/kv.mjs";
4
- import mq_default from "./json/mq.mjs";
5
- import pm_default from "./json/pm.mjs";
6
- import rt_default from "./json/rt.mjs";
1
+ import { isNotFoundError, runSubCommand } from "./utils.js";
2
+ import { version } from "./deno.js";
3
+ import kv_default from "./json/kv.js";
4
+ import mq_default from "./json/mq.js";
5
+ import pm_default from "./json/pm.js";
6
+ import rt_default from "./json/rt.js";
7
7
  import { entries, evolve, fromEntries, isObject, map, negate, pipe, throwIf } from "@fxts/core";
8
8
  import process from "node:process";
9
9
  import { commandLine, message } from "@optique/core/message";
package/dist/mod.d.ts ADDED
@@ -0,0 +1,3 @@
1
+ import { initCommand, initOptions } from "./command.js";
2
+ import { runInit } from "./action/mod.js";
3
+ export { initCommand, initOptions, runInit };
package/dist/mod.js ADDED
@@ -0,0 +1,3 @@
1
+ import runInit from "./action/mod.js";
2
+ import { initCommand, initOptions } from "./command.js";
3
+ export { initCommand, initOptions, runInit };
@@ -1,8 +1,8 @@
1
- import { set } from "../utils.mjs";
2
- import { checkRequiredDbs } from "./db.mjs";
3
- import { fillEmptyOptions } from "./fill.mjs";
4
- import runTests from "./run.mjs";
5
- import { emptyTestDir, genRunId, genTestDirPrefix, logTestDir } from "./utils.mjs";
1
+ import { set } from "../utils.js";
2
+ import { checkRequiredDbs } from "./db.js";
3
+ import { fillEmptyOptions } from "./fill.js";
4
+ import runTests from "./run.js";
5
+ import { emptyTestDir, genRunId, genTestDirPrefix, logTestDir } from "./utils.js";
6
6
  import { pipe, tap, when } from "@fxts/core";
7
7
  //#region src/test/action.ts
8
8
  const runTestInit = (options) => pipe(options, set("runId", genRunId), set("testDirPrefix", genTestDirPrefix), tap(emptyTestDir), fillEmptyOptions, tap(checkRequiredDbs), tap(logTestDir), tap(when(isDryRun, runTests(true))), tap(when(isHydRun, runTests(false))));
@@ -1,7 +1,7 @@
1
- import { CommandError, printErrorMessage, printMessage, product, runSubCommand } from "../utils.mjs";
2
- import pm_default from "../json/pm.mjs";
3
- import { kvStores, messageQueues } from "../lib.mjs";
4
- import webFrameworks from "../webframeworks.mjs";
1
+ import { CommandError, printErrorMessage, printMessage, product, runSubCommand } from "../utils.js";
2
+ import pm_default from "../json/pm.js";
3
+ import { kvStores, messageQueues } from "../lib.js";
4
+ import webFrameworks from "../webframeworks.js";
5
5
  import { filter, isEmpty, pipe, toArray } from "@fxts/core";
6
6
  import process from "node:process";
7
7
  import { values } from "@optique/core";
@@ -1,6 +1,6 @@
1
- import { printErrorMessage, printMessage } from "../utils.mjs";
2
- import { DB_TO_CHECK } from "../const.mjs";
3
- import db_to_check_default from "../json/db-to-check.mjs";
1
+ import { printErrorMessage, printMessage } from "../utils.js";
2
+ import { DB_TO_CHECK } from "../const.js";
3
+ import db_to_check_default from "../json/db-to-check.js";
4
4
  import { concat, filter, pipe, toArray, uniq } from "@fxts/core";
5
5
  import { createConnection } from "node:net";
6
6
  //#region src/test/db.ts
@@ -1,4 +1,4 @@
1
- import { KV_STORE, MESSAGE_QUEUE, PACKAGE_MANAGER, WEB_FRAMEWORK } from "../const.mjs";
1
+ import { KV_STORE, MESSAGE_QUEUE, PACKAGE_MANAGER, WEB_FRAMEWORK } from "../const.js";
2
2
  import { isEmpty, omit, pipe } from "@fxts/core";
3
3
  //#region src/test/fill.ts
4
4
  const fillEmptyOptions = (options) => pipe(options, fillWebFramework, fillPackageManager, fillKVStore, fillMessageQueue, fillRunMode);
@@ -1,6 +1,6 @@
1
- import { printErrorMessage, printMessage, runSubCommand } from "../utils.mjs";
2
- import { getDevCommand } from "../lib.mjs";
3
- import webFrameworks from "../webframeworks.mjs";
1
+ import { printErrorMessage, printMessage, runSubCommand } from "../utils.js";
2
+ import { getDevCommand } from "../lib.js";
3
+ import webFrameworks from "../webframeworks.js";
4
4
  import process from "node:process";
5
5
  import { values } from "@optique/core";
6
6
  import { spawn } from "node:child_process";
@@ -1,5 +1,5 @@
1
- import { testInitCommand } from "../command.mjs";
2
- import runTestInit from "./action.mjs";
1
+ import { testInitCommand } from "../command.js";
2
+ import runTestInit from "./action.js";
3
3
  import { run } from "@optique/run";
4
4
  //#region src/test/mod.ts
5
5
  async function main() {
@@ -1,6 +1,6 @@
1
- import { printMessage } from "../utils.mjs";
2
- import createTestApp, { filterOptions, generateTestCases } from "./create.mjs";
3
- import runServerAndLookupUser from "./lookup.mjs";
1
+ import { printMessage } from "../utils.js";
2
+ import createTestApp, { filterOptions, generateTestCases } from "./create.js";
3
+ import runServerAndLookupUser from "./lookup.js";
4
4
  import { always, filter, map, pipe, tap, unless } from "@fxts/core";
5
5
  import { optionNames } from "@optique/core";
6
6
  import { join as join$1 } from "node:path";
@@ -1,4 +1,4 @@
1
- import { printMessage } from "../utils.mjs";
1
+ import { printMessage } from "../utils.js";
2
2
  import { rm } from "node:fs/promises";
3
3
  import { join } from "node:path";
4
4
  import { tmpdir } from "node:os";
@@ -1,6 +1,6 @@
1
- import { InitCommand } from "./command.mjs";
2
- import { PACKAGE_MANAGER } from "./const.mjs";
3
- import { RequiredNotNull } from "./utils.mjs";
1
+ import { InitCommand } from "./command.js";
2
+ import { PACKAGE_MANAGER } from "./const.js";
3
+ import { RequiredNotNull } from "./utils.js";
4
4
  import { Message } from "@optique/core";
5
5
 
6
6
  //#region src/types.d.ts
@@ -1,6 +1,6 @@
1
- import { replace } from "./utils.mjs";
2
- import { PACKAGE_VERSION, getInstruction, getNextInitCommand, getNitroInitCommand, packageManagerToRuntime, readTemplate } from "./lib.mjs";
3
- import { PACKAGE_MANAGER } from "./const.mjs";
1
+ import { replace } from "./utils.js";
2
+ import { PACKAGE_VERSION, getInstruction, getNextInitCommand, getNitroInitCommand, packageManagerToRuntime, readTemplate } from "./lib.js";
3
+ import { PACKAGE_MANAGER } from "./const.js";
4
4
  import { pipe } from "@fxts/core";
5
5
  //#region src/webframeworks.ts
6
6
  const webFrameworks = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fedify/init",
3
- "version": "2.0.9",
3
+ "version": "2.0.11",
4
4
  "description": "Project initializer for Fedify",
5
5
  "keywords": [
6
6
  "fedify",
@@ -66,6 +66,8 @@
66
66
  "build:self": "tsdown",
67
67
  "build": "pnpm --filter @fedify/init... run build:self",
68
68
  "prepublish": "pnpm build",
69
+ "pretest": "pnpm build",
70
+ "test": "node --test --experimental-transform-types 'src/**/*.test.ts'",
69
71
  "test-init": "deno task test-init"
70
72
  }
71
73
  }
package/dist/mod.d.mts DELETED
@@ -1,3 +0,0 @@
1
- import { initCommand, initOptions } from "./command.mjs";
2
- import { runInit } from "./action/mod.mjs";
3
- export { initCommand, initOptions, runInit };
package/dist/mod.mjs DELETED
@@ -1,3 +0,0 @@
1
- import runInit from "./action/mod.mjs";
2
- import { initCommand, initOptions } from "./command.mjs";
3
- export { initCommand, initOptions, runInit };
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes