-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
208 additions
and
159 deletions.
There are no files selected for viewing
7 changes: 0 additions & 7 deletions
7
change/@minecraft-core-build-tasks-f422a1d3-0607-48c5-a390-fe2f93713af0.json
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
change/@minecraft-math-7b3a5de1-838b-46a5-acb6-9cdeddefff32.json
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
change/eslint-plugin-minecraft-linting-a958326b-c769-47f3-9670-d7f8edf651ee.json
This file was deleted.
Oops, something went wrong.
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
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
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,46 +1,46 @@ | ||
{ | ||
"name": "@minecraft/math", | ||
"version": "1.5.2", | ||
"author": "Raphael Landaverde (rlanda@microsoft.com)", | ||
"contributors": [ | ||
{ | ||
"name": "Jake Shirley", | ||
"email": "jashir@mojang.com" | ||
} | ||
], | ||
"description": "Math utilities for use with minecraft scripting modules", | ||
"exports": { | ||
"import": "./lib/index.js" | ||
}, | ||
"type": "module", | ||
"types": "./lib/types/math-public.d.ts", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/Mojang/minecraft-scripting-libraries.git", | ||
"directory": "libraries/math" | ||
}, | ||
"scripts": { | ||
"build": "just build", | ||
"lint": "just lint", | ||
"test": "just test", | ||
"clean": "just clean", | ||
"postpublish": "just postpublish" | ||
}, | ||
"license": "MIT", | ||
"files": [ | ||
"dist", | ||
"lib", | ||
"api-report" | ||
], | ||
"peerDependencies": { | ||
"@minecraft/server": "^1.15.0" | ||
}, | ||
"devDependencies": { | ||
"@minecraft/server": "^1.15.0", | ||
"@minecraft/core-build-tasks": "*", | ||
"@minecraft/tsconfig": "*", | ||
"just-scripts": "^2.3.3", | ||
"prettier": "^2.8.2", | ||
"vitest": "^0.34.6" | ||
"name": "@minecraft/math", | ||
"version": "2.0.0", | ||
"author": "Raphael Landaverde (rlanda@microsoft.com)", | ||
"contributors": [ | ||
{ | ||
"name": "Jake Shirley", | ||
"email": "jashir@mojang.com" | ||
} | ||
], | ||
"description": "Math utilities for use with minecraft scripting modules", | ||
"exports": { | ||
"import": "./lib/index.js" | ||
}, | ||
"type": "module", | ||
"types": "./lib/types/math-public.d.ts", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/Mojang/minecraft-scripting-libraries.git", | ||
"directory": "libraries/math" | ||
}, | ||
"scripts": { | ||
"build": "just build", | ||
"lint": "just lint", | ||
"test": "just test", | ||
"clean": "just clean", | ||
"postpublish": "just postpublish" | ||
}, | ||
"license": "MIT", | ||
"files": [ | ||
"dist", | ||
"lib", | ||
"api-report" | ||
], | ||
"peerDependencies": { | ||
"@minecraft/server": "^1.15.0" | ||
}, | ||
"devDependencies": { | ||
"@minecraft/server": "^1.15.0", | ||
"@minecraft/core-build-tasks": "*", | ||
"@minecraft/tsconfig": "*", | ||
"just-scripts": "^2.3.3", | ||
"prettier": "^2.8.2", | ||
"vitest": "^0.34.6" | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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,56 +1,56 @@ | ||
{ | ||
"name": "@minecraft/core-build-tasks", | ||
"version": "2.0.0", | ||
"description": "Common build tasks used for minecraft-scripting-libraries", | ||
"exports": { | ||
"import": "./lib/index.js", | ||
"require": "./lib-cjs/index.js" | ||
}, | ||
"types": "./lib/index.d.ts", | ||
"author": "Raphael Landaverde (rlanda@microsoft.com)", | ||
"contributors": [ | ||
{ | ||
"name": "Francisco Alejandro Garcia Cebada", | ||
"email": "frgarc@mojang.com" | ||
} | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/Mojang/minecraft-scripting-libraries.git", | ||
"directory": "tools/core-build-tasks" | ||
}, | ||
"scripts": { | ||
"build-tools": "node ./esbuild.mjs", | ||
"clean-tools": "just clean-tools", | ||
"lint": "just lint", | ||
"test": "just test" | ||
}, | ||
"files": [ | ||
"lib", | ||
"lib-cjs", | ||
"CHANGELOG.*" | ||
], | ||
"dependencies": { | ||
"@rushstack/node-core-library": "^3.59.6", | ||
"@microsoft/api-extractor": "^7.38.3", | ||
"esbuild": "^0.20.1", | ||
"dotenv": "^16.4.5", | ||
"just-scripts": "^2.3.3", | ||
"prettier": "^2.8.2", | ||
"rimraf": "^3.0.2", | ||
"eslint": "^9.17.0", | ||
"typescript": "^5.7.2", | ||
"vitest": "^0.34.6", | ||
"zip-lib": "^0.7.3" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "^14.0.0 || ^16.0.0 || ^18.0.0", | ||
"@types/rimraf": "^3.0.2", | ||
"@typescript-eslint/parser": "^8.18.1", | ||
"@octokit/rest": "^21.0.2", | ||
"@types/archiver": "^6.0.0", | ||
"archiver": "^6.0.0", | ||
"ts-node": "^10.9.1", | ||
"tsconfig": "*" | ||
"name": "@minecraft/core-build-tasks", | ||
"version": "3.0.0", | ||
"description": "Common build tasks used for minecraft-scripting-libraries", | ||
"exports": { | ||
"import": "./lib/index.js", | ||
"require": "./lib-cjs/index.js" | ||
}, | ||
"types": "./lib/index.d.ts", | ||
"author": "Raphael Landaverde (rlanda@microsoft.com)", | ||
"contributors": [ | ||
{ | ||
"name": "Francisco Alejandro Garcia Cebada", | ||
"email": "frgarc@mojang.com" | ||
} | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/Mojang/minecraft-scripting-libraries.git", | ||
"directory": "tools/core-build-tasks" | ||
}, | ||
"scripts": { | ||
"build-tools": "node ./esbuild.mjs", | ||
"clean-tools": "just clean-tools", | ||
"lint": "just lint", | ||
"test": "just test" | ||
}, | ||
"files": [ | ||
"lib", | ||
"lib-cjs", | ||
"CHANGELOG.*" | ||
], | ||
"dependencies": { | ||
"@rushstack/node-core-library": "^3.59.6", | ||
"@microsoft/api-extractor": "^7.38.3", | ||
"esbuild": "^0.20.1", | ||
"dotenv": "^16.4.5", | ||
"just-scripts": "^2.3.3", | ||
"prettier": "^2.8.2", | ||
"rimraf": "^3.0.2", | ||
"eslint": "^9.17.0", | ||
"typescript": "^5.7.2", | ||
"vitest": "^0.34.6", | ||
"zip-lib": "^0.7.3" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "^14.0.0 || ^16.0.0 || ^18.0.0", | ||
"@types/rimraf": "^3.0.2", | ||
"@typescript-eslint/parser": "^8.18.1", | ||
"@octokit/rest": "^21.0.2", | ||
"@types/archiver": "^6.0.0", | ||
"archiver": "^6.0.0", | ||
"ts-node": "^10.9.1", | ||
"tsconfig": "*" | ||
} | ||
} |
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
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
Oops, something went wrong.