@catalystsoftware/ui 1.0.8 → 1.0.9

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 (2) hide show
  1. package/dist/index.js +2 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -29981,7 +29981,8 @@ async function installDependencies(deps) {
29981
29981
  const packageManager = await detectPackageManager();
29982
29982
  const installCmd = packageManager === "npm" ? "install" : "add";
29983
29983
  execSync(`${packageManager} ${installCmd} ${deps.join(" ")}`, {
29984
- stdio: "inherit"
29984
+ stdio: "inherit",
29985
+ cwd: process.cwd()
29985
29986
  });
29986
29987
  spinner.succeed(source_default.green("Dependencies installed"));
29987
29988
  } catch (error) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@catalystsoftware/ui",
3
- "version": "1.0.8",
3
+ "version": "1.0.9",
4
4
  "description": "Catalyst UI Component Library CLI",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",