create-acmekit-app 2.13.1 → 2.13.2

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,3 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 2.13.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Use `main` branch for acmekit-starter-default clone instead of `master`
8
+
9
+ - Updated dependencies []:
10
+ - @acmekit/telemetry@2.13.2
11
+ - @acmekit/deps@2.13.2
12
+
3
13
  All notable changes to this project will be documented in this file.
@@ -6,7 +6,7 @@ import logMessage from "./log-message.js";
6
6
  import { execFileSync } from "child_process";
7
7
  const DEFAULT_REPO = "https://github.com/acmekit/acmekit-starter-default";
8
8
  const DEFAULT_PLUGIN_REPO = "https://github.com/acmekit/acmekit-starter-plugin";
9
- const BRANCH = "master";
9
+ const BRANCH = "main";
10
10
  const PLUGIN_BRANCH = "main";
11
11
  export default async function cloneRepo({ directoryName = "", repoUrl, abortController, verbose = false, isPlugin = false, }) {
12
12
  const defaultRepo = isPlugin ? DEFAULT_PLUGIN_REPO : DEFAULT_REPO;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-acmekit-app",
3
- "version": "2.13.1",
3
+ "version": "2.13.2",
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.1",
18
- "@acmekit/telemetry": "2.13.1",
17
+ "@acmekit/deps": "2.13.2",
18
+ "@acmekit/telemetry": "2.13.2",
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 DEFAULT_REPO = "https://github.com/acmekit/acmekit-starter-default"
18
18
  const DEFAULT_PLUGIN_REPO = "https://github.com/acmekit/acmekit-starter-plugin"
19
- const BRANCH = "master"
19
+ const BRANCH = "main"
20
20
  const PLUGIN_BRANCH = "main"
21
21
 
22
22
  export default async function cloneRepo({