bc-minecraft-bedrock-vanilla-data 1.5.11 → 1.5.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +13 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -3,7 +3,8 @@
|
|
|
3
3
|
[](https://github.com/Blockception/BC-Minecraft-Bedrock-Vanilla-Data/actions/workflows/npm-test.yml)
|
|
4
4
|
[](https://github.com/Blockception/BC-Minecraft-Bedrock-Vanilla-Data/actions/workflows/npm-publish.yml)
|
|
5
5
|
[](https://github.com/Blockception/BC-Minecraft-Bedrock-Vanilla-Data/actions/workflows/create-includes.yml)
|
|
6
|
-

|
|
6
|
+

|
|
7
|
+

|
|
7
8
|
|
|
8
9
|
A Typescript library that provides vanilla minecraft bedrock data
|
|
9
10
|
|
|
@@ -16,3 +17,14 @@ MinecraftData.ResourcePack.getAnimation("...");
|
|
|
16
17
|
MinecraftData.vanilla.ResourcePack.animations.foreach(Animation=>...);
|
|
17
18
|
MinecraftData.edu.ResourcePack.animations.foreach(Animation=>...);
|
|
18
19
|
```
|
|
20
|
+
|
|
21
|
+
## Contributing
|
|
22
|
+
|
|
23
|
+
First, read the [contributing guide](./CONTRIBUTING.md). fork the project, clone it and run the following commands:
|
|
24
|
+
|
|
25
|
+
**Installation**
|
|
26
|
+
|
|
27
|
+
```cmd
|
|
28
|
+
npm ci
|
|
29
|
+
npm update
|
|
30
|
+
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bc-minecraft-bedrock-vanilla-data",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.12",
|
|
4
4
|
"description": "A Typescript library for dealing provides vanilla minecraft data",
|
|
5
5
|
"main": "./lib/src/main.js",
|
|
6
6
|
"types": "./lib/src/main.d.ts",
|
|
@@ -40,11 +40,11 @@
|
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@types/chai": "^4.2.22",
|
|
42
42
|
"@types/mocha": "^9.0.0",
|
|
43
|
-
"@types/node": "^16.11.
|
|
43
|
+
"@types/node": "^16.11.4",
|
|
44
44
|
"chai": "^4.3.4",
|
|
45
45
|
"mocha": "^9.1.3",
|
|
46
46
|
"rimraf": "^3.0.2",
|
|
47
|
-
"ts-node": "^10.3.
|
|
47
|
+
"ts-node": "^10.3.1",
|
|
48
48
|
"typescript": "^4.4.4"
|
|
49
49
|
}
|
|
50
50
|
}
|