-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch @minecraft/server to a peer dependency (#11)
* Minor adjustment to dependencies, making @minecraft/server a peer instead of direct dependency * Change files
- Loading branch information
Showing
2 changed files
with
35 additions
and
27 deletions.
There are no files selected for viewing
7 changes: 7 additions & 0 deletions
7
change/@minecraft-math-41fcb2b6-6a4c-4706-be67-f34448120b1b.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"type": "minor", | ||
"comment": "Minor adjustment to dependencies, making @minecraft/server a peer instead of direct dependency", | ||
"packageName": "@minecraft/math", | ||
"email": "[email protected]", | ||
"dependentChangeType": "patch" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,30 @@ | ||
{ | ||
"name": "@minecraft/math", | ||
"version": "1.0.1", | ||
"author": "Raphael Landaverde ([email protected])", | ||
"description": "Math utilities for use with minecraft scripting modules", | ||
"main": "lib/index.js", | ||
"types": "lib/types/math-public.d.ts", | ||
"scripts": { | ||
"build": "just build", | ||
"lint": "just lint", | ||
"test": "just test", | ||
"clean": "just clean" | ||
}, | ||
"license": "MIT", | ||
"files": [ | ||
"dist", | ||
"lib", | ||
"api-report" | ||
], | ||
"dependencies": { | ||
"@minecraft/server": "^1.6.0" | ||
}, | ||
"devDependencies": { | ||
"@minecraft/core-build-tasks": "*", | ||
"@minecraft/tsconfig": "*", | ||
"just-scripts": "^2.2.1", | ||
"vitest": "^0.34.6" | ||
} | ||
"name": "@minecraft/math", | ||
"version": "1.0.1", | ||
"author": "Raphael Landaverde ([email protected])", | ||
"description": "Math utilities for use with minecraft scripting modules", | ||
"main": "lib/index.js", | ||
"types": "lib/types/math-public.d.ts", | ||
"scripts": { | ||
"build": "just build", | ||
"lint": "just lint", | ||
"test": "just test", | ||
"clean": "just clean" | ||
}, | ||
"license": "MIT", | ||
"files": [ | ||
"dist", | ||
"lib", | ||
"api-report" | ||
], | ||
"peerDependencies": { | ||
"@minecraft/server": "^1.6.0" | ||
}, | ||
"devDependencies": { | ||
"@minecraft/server": "^1.6.0", | ||
"@minecraft/core-build-tasks": "*", | ||
"@minecraft/tsconfig": "*", | ||
"just-scripts": "^2.2.1", | ||
"vitest": "^0.34.6" | ||
} | ||
} |