-
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.
Remove a step in the release yaml that was just for testing (#9)
* Remove a step in the release yaml that was just for testing * README fixes * Change files
- Loading branch information
Showing
4 changed files
with
38 additions
and
44 deletions.
There are no files selected for viewing
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
7 changes: 7 additions & 0 deletions
7
change/@minecraft-core-build-tasks-5e70bf0a-fddf-4f5f-82b8-5982ad409952.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": "patch", | ||
"comment": "README fixes", | ||
"packageName": "@minecraft/core-build-tasks", | ||
"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,5 +1,5 @@ | ||
# Core Build Tasks | ||
|
||
This package contains common build tasks used through the src-ts turbo build. If a task is used by `just` in multiple packages, it is moved into this package to reduce duplication. An example of this is the api-extractor task which is used by almost all packages in the src-ts subdirectory. | ||
This package contains common build tasks used within the minecraft-scripting-libraries build, but can be used in other repositories as well. If a task is used by `just` in multiple packages, it is moved into this package to reduce duplication. | ||
|
||
This subdirectory only runs the `build` step, and more specifically, only runs `tsc` today since this package itself defines build tasks, so it must be kept lightweight. |
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,31 +1,31 @@ | ||
{ | ||
"name": "@minecraft/core-build-tasks", | ||
"version": "1.0.0", | ||
"description": "Common build tasks uses through this repository", | ||
"main": "lib/index.js", | ||
"types": "lib/index.d.ts", | ||
"author": "Raphael Landaverde ([email protected])", | ||
"scripts": { | ||
"build-tools": "just-scripts build-tools", | ||
"clean-tools": "just-scripts clean-tools", | ||
"test": "just-scripts test" | ||
}, | ||
"files": [ | ||
"lib" | ||
], | ||
"dependencies": { | ||
"@rushstack/node-core-library": "^3.59.6", | ||
"@microsoft/api-extractor": "^7.38.3", | ||
"rimraf": "^3.0.2", | ||
"vitest": "^0.34.6", | ||
"webpack": "^5.86.0" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "^14.0.0 || ^16.0.0 || ^18.0.0", | ||
"@types/rimraf": "^3.0.2", | ||
"just-scripts": "^2.1.3", | ||
"ts-node": "^10.9.1", | ||
"tsconfig": "*", | ||
"typescript": "^5.2.2" | ||
} | ||
"name": "@minecraft/core-build-tasks", | ||
"version": "1.0.0", | ||
"description": "Common build tasks used for minecraft-scripting-libraries", | ||
"main": "lib/index.js", | ||
"types": "lib/index.d.ts", | ||
"author": "Raphael Landaverde ([email protected])", | ||
"scripts": { | ||
"build-tools": "just-scripts build-tools", | ||
"clean-tools": "just-scripts clean-tools", | ||
"test": "just-scripts test" | ||
}, | ||
"files": [ | ||
"lib" | ||
], | ||
"dependencies": { | ||
"@rushstack/node-core-library": "^3.59.6", | ||
"@microsoft/api-extractor": "^7.38.3", | ||
"rimraf": "^3.0.2", | ||
"vitest": "^0.34.6", | ||
"webpack": "^5.86.0" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "^14.0.0 || ^16.0.0 || ^18.0.0", | ||
"@types/rimraf": "^3.0.2", | ||
"just-scripts": "^2.1.3", | ||
"ts-node": "^10.9.1", | ||
"tsconfig": "*", | ||
"typescript": "^5.2.2" | ||
} | ||
} |