neovate-code-wrapped 1.0.0 → 1.0.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.
@@ -39,8 +39,8 @@ let arch = archMap[osArch()];
39
39
  if (!arch) {
40
40
  arch = osArch();
41
41
  }
42
- const base = "neovate-wrapped-" + platform + "-" + arch;
43
- const binary = platform === "windows" ? "neovate-wrapped.exe" : "neovate-wrapped";
42
+ const base = "neovate-code-wrapped-" + platform + "-" + arch;
43
+ const binary = platform === "windows" ? "neovate-code-wrapped.exe" : "neovate-code-wrapped";
44
44
 
45
45
  function findBinary(startDir) {
46
46
  let current = startDir;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "neovate-code-wrapped",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "author": {
5
5
  "name": "iamdin",
6
6
  "email": "iamdinq@gmail.com"
@@ -111,7 +111,7 @@ function getPlatformInfo() {
111
111
 
112
112
  function buildPackageName(platform, arch, { baseline, musl }) {
113
113
  return [
114
- "neovate-wrapped",
114
+ "neovate-code-wrapped",
115
115
  platform,
116
116
  arch,
117
117
  baseline ? "baseline" : undefined,
@@ -191,7 +191,7 @@ function testBinary(binaryPath) {
191
191
  * Find the binary from the platform package
192
192
  */
193
193
  function findBinary(packageName) {
194
- const binaryName = os.platform() === "win32" ? "neovate-wrapped.exe" : "neovate-wrapped";
194
+ const binaryName = os.platform() === "win32" ? "neovate-code-wrapped.exe" : "neovate-code-wrapped";
195
195
 
196
196
  try {
197
197
  const packageJsonPath = require.resolve(`${packageName}/package.json`);