From ddb66e2739d7efdae466584a4fa6cecbcf8789e4 Mon Sep 17 00:00:00 2001 From: Rhys Sullivan <39114868+RhysSullivan@users.noreply.github.com> Date: Sat, 27 Jun 2026 20:29:49 -0700 Subject: [PATCH] Publish the fork under @executor-js/emulate (the name we own) The package was named 'emulate', which is owned on npm by the upstream project (ctate) and cannot be published from this fork. Our published package, and the name executor depends on, is the scoped @executor-js/emulate. Rename the package and point the release workflow at it. --- .github/workflows/release.yml | 6 +++--- packages/emulate/package.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b821decc..ade8056f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -33,8 +33,8 @@ jobs: LOCAL_VERSION=$(node -p "require('./packages/emulate/package.json').version") SHOULD_RELEASE=false - REGISTRY_VERSION=$(npm view emulate version 2>/dev/null || echo "0.0.0") - echo "emulate — local: $LOCAL_VERSION, registry: $REGISTRY_VERSION" + REGISTRY_VERSION=$(npm view @executor-js/emulate version 2>/dev/null || echo "0.0.0") + echo "@executor-js/emulate — local: $LOCAL_VERSION, registry: $REGISTRY_VERSION" if [ "$LOCAL_VERSION" != "$REGISTRY_VERSION" ]; then SHOULD_RELEASE=true fi @@ -99,7 +99,7 @@ jobs: fi } - publish_pkg packages/emulate emulate + publish_pkg packages/emulate @executor-js/emulate for pkg in $EMULATOR_PACKAGES; do publish_pkg "packages/@emulators/$pkg" "@emulators/$pkg" diff --git a/packages/emulate/package.json b/packages/emulate/package.json index 8d58ef67..1ede5910 100644 --- a/packages/emulate/package.json +++ b/packages/emulate/package.json @@ -1,5 +1,5 @@ { - "name": "emulate", + "name": "@executor-js/emulate", "version": "0.8.1", "description": "Local drop-in replacement services for CI and no-network sandboxes", "license": "Apache-2.0",