@mainset/cli 0.4.0 → 0.4.1

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.
@@ -34,8 +34,10 @@ cliCommandName) {
34
34
  const hostPackageDependencyBinCLICommandPath = path.resolve(runtimePathById.root, `node_modules/${hostPackageName}/node_modules/.bin/${cliCommandName}`);
35
35
  // Return the full path if the dependency is linked or part of a workspace (nested under the host package)
36
36
  if (fs.existsSync(hostPackageDependencyBinCLICommandPath)) {
37
- // !IMPORTANT: required for development mode in pnpm workspaces with symlinks {dev-stack-fe} project compilation
38
- return fileURLToPath(import.meta.resolve(hostPackageDependencyBinCLICommandPath));
37
+ // return fileURLToPath(
38
+ // import.meta.resolve(hostPackageDependencyBinCLICommandPath),
39
+ // );
40
+ return hostPackageDependencyBinCLICommandPath;
39
41
  }
40
42
  // Otherwise, return the path to the dependency in the root node_modules (for registry-installed packages)
41
43
  const dependencyBinCLICommandPath = path.resolve(runtimePathById.root, `node_modules/.bin/${cliCommandName}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mainset/cli",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "A unified CLI tool for accelerating development, based on mainset vision of front-end infrastructure",
5
5
  "homepage": "https://github.com/mainset/dev-stack-fe/tree/main/packages/cli",
6
6
  "bugs": {