@anaemia/cli 0.1.6 → 0.1.8

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/dist/index.js CHANGED
@@ -265,7 +265,7 @@ cli
265
265
  packageManager = "yarn";
266
266
  try {
267
267
  if (packageManager === "pnpm") {
268
- execSync(`pnpm dlx dlx-unzip @anaemia/template-base "${targetPath}"`, { stdio: "ignore" });
268
+ execSync(`pnpm dlx degit colourlabs/anaemia/templates/base-app "${targetPath}"`, { stdio: "ignore" });
269
269
  }
270
270
  else {
271
271
  execSync(`npx degit colourlabs/anaemia/templates/base-app "${targetPath}"`, { stdio: "ignore" });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anaemia/cli",
3
- "version": "0.1.6",
3
+ "version": "0.1.8",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "anaemia": "./dist/index.js"
@@ -15,7 +15,7 @@
15
15
  "prompts": "^2.4.2",
16
16
  "sucrase": "^3.35.1",
17
17
  "ws": "^8.21.0",
18
- "@anaemia/bundler": "0.1.2",
18
+ "@anaemia/bundler": "0.1.3",
19
19
  "@anaemia/core": "0.1.2"
20
20
  },
21
21
  "devDependencies": {
package/src/index.ts CHANGED
@@ -316,7 +316,7 @@ cli
316
316
 
317
317
  try {
318
318
  if (packageManager === "pnpm") {
319
- execSync(`pnpm dlx dlx-unzip @anaemia/template-base "${targetPath}"`, { stdio: "ignore" });
319
+ execSync(`pnpm dlx degit colourlabs/anaemia/templates/base-app "${targetPath}"`, { stdio: "ignore" });
320
320
  } else {
321
321
  execSync(`npx degit colourlabs/anaemia/templates/base-app "${targetPath}"`, { stdio: "ignore" });
322
322
  }