Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion packages/emulate/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
Loading