@microsoft/inshellisense 0.0.1-rc.27 → 0.0.1-rc.29

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/bin.js +1 -3
  2. package/package.json +7 -7
package/bin.js CHANGED
@@ -10,9 +10,7 @@ const arch = process.arch;
10
10
 
11
11
  const platformArch = `${platform}-${arch}`;
12
12
  const packageName = `@microsoft/inshellisense-${platformArch}`;
13
- const binaryName = platform === "win32"
14
- ? `inshellisense-${platformArch}.exe`
15
- : `inshellisense-${platformArch}`;
13
+ const binaryName = platform === "win32" ? `inshellisense-${platformArch}.exe` : `inshellisense-${platformArch}`;
16
14
 
17
15
  try {
18
16
  const platformPkgPath = require.resolve(`${packageName}/package.json`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@microsoft/inshellisense",
3
- "version": "0.0.1-rc.27",
3
+ "version": "0.0.1-rc.29",
4
4
  "description": "IDE style command line auto complete",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -23,11 +23,11 @@
23
23
  "bin.js"
24
24
  ],
25
25
  "optionalDependencies": {
26
- "@microsoft/inshellisense-darwin-x64": "0.0.1-rc.27",
27
- "@microsoft/inshellisense-darwin-arm64": "0.0.1-rc.27",
28
- "@microsoft/inshellisense-linux-x64": "0.0.1-rc.27",
29
- "@microsoft/inshellisense-linux-arm64": "0.0.1-rc.27",
30
- "@microsoft/inshellisense-win32-x64": "0.0.1-rc.27",
31
- "@microsoft/inshellisense-win32-arm64": "0.0.1-rc.27"
26
+ "@microsoft/inshellisense-darwin-x64": "0.0.1-rc.29",
27
+ "@microsoft/inshellisense-darwin-arm64": "0.0.1-rc.29",
28
+ "@microsoft/inshellisense-linux-x64": "0.0.1-rc.29",
29
+ "@microsoft/inshellisense-linux-arm64": "0.0.1-rc.29",
30
+ "@microsoft/inshellisense-win32-x64": "0.0.1-rc.29",
31
+ "@microsoft/inshellisense-win32-arm64": "0.0.1-rc.29"
32
32
  }
33
33
  }