From eedd7e5275d7ebd3b81aebfcc4eff76353ee22ca Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Sat, 9 Mar 2024 04:32:15 +0000 Subject: [PATCH] chore(release): 4.0.1 [skip ci] ## [4.0.1](https://github.com/scratchfoundation/scratch-vm/compare/v4.0.0...v4.0.1) (2024-03-09) ### Bug Fixes * **build:** separate node, browser, and webpack exports ([609b525](https://github.com/scratchfoundation/scratch-vm/commit/609b525826a7745c25a6cf37648705852781e108)) --- CHANGELOG.md | 7 +++++++ package-lock.json | 4 ++-- package.json | 10 +++++----- 3 files changed, 14 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a07cf6198..2ab2bf0d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.1](https://github.com/scratchfoundation/scratch-vm/compare/v4.0.0...v4.0.1) (2024-03-09) + + +### Bug Fixes + +* **build:** separate node, browser, and webpack exports ([609b525](https://github.com/scratchfoundation/scratch-vm/commit/609b525826a7745c25a6cf37648705852781e108)) + # [4.0.0](https://github.com/scratchfoundation/scratch-vm/compare/v3.0.21...v4.0.0) (2024-03-09) diff --git a/package-lock.json b/package-lock.json index 34db7400a..34b8ff153 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "scratch-vm", - "version": "4.0.0", + "version": "4.0.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "scratch-vm", - "version": "4.0.0", + "version": "4.0.1", "license": "BSD-3-Clause", "dependencies": { "@vernier/godirect": "^1.5.0", diff --git a/package.json b/package.json index dfe700284..621f0a707 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "scratch-vm", - "version": "4.0.0", + "version": "4.0.1", "description": "Virtual Machine for Scratch 3.0", "author": "Massachusetts Institute of Technology", "license": "BSD-3-Clause", @@ -8,12 +8,12 @@ "repository": { "type": "git", "url": "https://github.com/scratchfoundation/scratch-vm.git", - "sha": "e7962b101d669f70146dc9cc455a7925523fb8d2" + "sha": "609b525826a7745c25a6cf37648705852781e108" }, "exports": { - "browser": "./dist/web/scratch-vm.js", - "node": "./dist/node/scratch-vm.js", - "webpack": "./src/index.js" + "browser": "./dist/web/scratch-vm.js", + "node": "./dist/node/scratch-vm.js", + "webpack": "./src/index.js" }, "scripts": { "build": "npm run docs && webpack --progress",