mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-22 22:12:28 -05:00
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
](609b525826
))
This commit is contained in:
parent
609b525826
commit
eedd7e5275
3 changed files with 14 additions and 7 deletions
|
@ -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)
|
||||
|
||||
|
||||
|
|
4
package-lock.json
generated
4
package-lock.json
generated
|
@ -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",
|
||||
|
|
10
package.json
10
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",
|
||||
|
|
Loading…
Reference in a new issue