create-acmekit-app 2.13.46 → 2.13.47

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/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # Changelog
2
2
 
3
+ ## 2.13.47
4
+
5
+ ### Patch Changes
6
+
7
+ - changes
8
+
9
+ - Updated dependencies []:
10
+ - @acmekit/telemetry@2.13.47
11
+ - @acmekit/deps@2.13.47
12
+
3
13
  ## 2.13.46
4
14
 
5
15
  ### Patch Changes
@@ -6,7 +6,7 @@ import logMessage from "./log-message.js";
6
6
  import { execFileSync } from "child_process";
7
7
  const REPO_URL = "https://github.com/acmekit/acmekit";
8
8
  const BRANCH = "main";
9
- const DEFAULT_TEMPLATE = "templates/default";
9
+ const DEFAULT_TEMPLATE = "templates/app";
10
10
  const PLUGIN_TEMPLATE = "templates/plugin";
11
11
  export default async function cloneRepo({ directoryName = "", repoUrl, abortController, verbose = false, isPlugin = false, }) {
12
12
  if (repoUrl) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-acmekit-app",
3
- "version": "2.13.46",
3
+ "version": "2.13.47",
4
4
  "description": "Create a AcmeKit project using a single command.",
5
5
  "type": "module",
6
6
  "exports": "./dist/index.js",
@@ -14,8 +14,8 @@
14
14
  "test": "../../../node_modules/.bin/jest --passWithNoTests src"
15
15
  },
16
16
  "dependencies": {
17
- "@acmekit/deps": "2.13.46",
18
- "@acmekit/telemetry": "2.13.46",
17
+ "@acmekit/deps": "2.13.47",
18
+ "@acmekit/telemetry": "2.13.47",
19
19
  "boxen": "^5.0.1",
20
20
  "chalk": "^4.1.2",
21
21
  "commander": "^11.0.0",
@@ -16,7 +16,7 @@ type CloneRepoOptions = {
16
16
 
17
17
  const REPO_URL = "https://github.com/acmekit/acmekit"
18
18
  const BRANCH = "main"
19
- const DEFAULT_TEMPLATE = "templates/default"
19
+ const DEFAULT_TEMPLATE = "templates/app"
20
20
  const PLUGIN_TEMPLATE = "templates/plugin"
21
21
 
22
22
  export default async function cloneRepo({