bunite-core 0.0.6 → 0.0.7
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.
- package/package.json +1 -1
- package/src/shared/paths.ts +3 -3
package/package.json
CHANGED
package/src/shared/paths.ts
CHANGED
|
@@ -126,9 +126,9 @@ export function resolveNativeArtifacts(): ResolvedNativeArtifacts {
|
|
|
126
126
|
|
|
127
127
|
const packageRoot = resolveBunitePackageRoot();
|
|
128
128
|
|
|
129
|
-
// 2. Optional npm packages (
|
|
130
|
-
const nativePackageName =
|
|
131
|
-
const cefPackageName =
|
|
129
|
+
// 2. Optional npm packages (bunite-native-*, bunite-cef-*)
|
|
130
|
+
const nativePackageName = `bunite-native-${PLATFORM_TAG}-${ARCH}`;
|
|
131
|
+
const cefPackageName = `bunite-cef-${PLATFORM_TAG}-${ARCH}`;
|
|
132
132
|
const nativePackageRoot = resolvePackageRoot(nativePackageName);
|
|
133
133
|
const cefPackageRoot = resolvePackageRoot(cefPackageName);
|
|
134
134
|
|