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 CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bunite-core",
3
3
  "description": "Uniting UI and Bun",
4
- "version": "0.0.6",
4
+ "version": "0.0.7",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "setup:cef": "bun ../tools/bunite-dev/scripts/setup-cef.ts",
@@ -126,9 +126,9 @@ export function resolveNativeArtifacts(): ResolvedNativeArtifacts {
126
126
 
127
127
  const packageRoot = resolveBunitePackageRoot();
128
128
 
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}`;
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