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 +10 -0
- package/dist/utils/clone-repo.js +1 -1
- package/package.json +3 -3
- package/src/utils/clone-repo.ts +1 -1
package/CHANGELOG.md
CHANGED
package/dist/utils/clone-repo.js
CHANGED
|
@@ -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/
|
|
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.
|
|
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.
|
|
18
|
-
"@acmekit/telemetry": "2.13.
|
|
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",
|
package/src/utils/clone-repo.ts
CHANGED
|
@@ -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/
|
|
19
|
+
const DEFAULT_TEMPLATE = "templates/app"
|
|
20
20
|
const PLUGIN_TEMPLATE = "templates/plugin"
|
|
21
21
|
|
|
22
22
|
export default async function cloneRepo({
|