@unisphere/cli 1.45.0 → 1.45.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.
@@ -103,7 +103,7 @@ function getUnispherePackagesDistList(cwd) {
103
103
 
104
104
  if (process.platform === 'win32') {
105
105
  console.log('[unisphere] running on Windows');
106
- folderPattern = folderPattern.replace(/\//g, '\\');
106
+ folderPattern = folderPattern.replace(/\\/g, '/');
107
107
  }
108
108
  console.log('[unisphere] looking for packages in', folderPattern);
109
109
  const folderPaths = glob.sync(folderPattern);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unisphere/cli",
3
- "version": "1.45.0",
3
+ "version": "1.45.1",
4
4
  "bin": {
5
5
  "unisphere": "./src/cli.js"
6
6
  },