bc-minecraft-project 1.0.12 → 1.0.16

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.
Files changed (2) hide show
  1. package/README.md +19 -7
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -44,8 +44,8 @@ if (MCAttributes.getOrAdd(project.attributes, "diagnose", "false") === "true") {
44
44
 
45
45
  ## Project Attribute
46
46
 
47
- This standard will introduce 3 new file that will help with project definition, attributes, excluded/includes of folders/files and settings that deal with project for minecraft
48
- bedrock.
47
+ This standard will introduce 3 new file that will help with project definition, attributes, excluded/includes of folders/files and settings that deal
48
+ with project for minecraft bedrock.
49
49
  The file can be found in the root of the project. The following files will be added:
50
50
 
51
51
  - [Blockception Minecraft Project](#blockception-minecraft-project)
@@ -54,12 +54,13 @@ The file can be found in the root of the project. The following files will be ad
54
54
  - [McAttributes](#mcattributes)
55
55
  - [McDefinitions](#mcdefinitions)
56
56
  - [McIgnore](#mcignore)
57
+ - [Contributing](#contributing)
57
58
 
58
59
  ### McAttributes
59
60
 
60
- The file with the name: `.mcattributes`. This file stores any of the settings or attribtues related to the project. Which uses universal determined keys along each project. Each
61
- tool/program may also introduce each own set of keys, aslong as they are unique to the tool/program. Other programs/tools simply ignore these keys. But when overwriting the file,
62
- must keep the old keys from other tools or programs.
61
+ The file with the name: `.mcattributes`. This file stores any of the settings or attribtues related to the project. Which uses universal determined
62
+ keys along each project. Each tool/program may also introduce each own set of keys, aslong as they are unique to the tool/program. Other
63
+ programs/tools simply ignore these keys. But when overwriting the file, must keep the old keys from other tools or programs.
63
64
 
64
65
  A wider specification can be found in [McAttributes](https://faq.blockception.dev/mcproject/mcattributes)
65
66
 
@@ -78,8 +79,8 @@ world.area_used=0 0 0 1000 256 1000
78
79
 
79
80
  ### McDefinitions
80
81
 
81
- This file specifies anything that is included in the project, but cannot be found in the project files itself, or not easly. At the same time the user can also blacklist definition
82
- through this same project.
82
+ This file specifies anything that is included in the project, but cannot be found in the project files itself, or not easly. At the same time the user
83
+ can also blacklist definition through this same project.
83
84
 
84
85
  A wider specification can be found in [McDefinitions](https://faq.blockception.dev/mcproject/mcdefinitions)
85
86
 
@@ -139,3 +140,14 @@ Template
139
140
  ```
140
141
 
141
142
  ---
143
+
144
+ ## Contributing
145
+
146
+ First, read the [contributing guide](./CONTRIBUTING.md). fork the project, clone it and run the following commands:
147
+
148
+ **Installation**
149
+
150
+ ```cmd
151
+ npm ci
152
+ npm update
153
+ ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bc-minecraft-project",
3
- "version": "1.0.12",
3
+ "version": "1.0.16",
4
4
  "description": "A library that provides object and handling for minecraft projects",
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.10.2",
43
+ "@types/node": "^16.11.11",
44
44
  "chai": "^4.3.4",
45
- "mocha": "^9.1.2",
45
+ "mocha": "^9.1.3",
46
46
  "rimraf": "^3.0.2",
47
- "ts-node": "^10.2.1",
48
- "typescript": "^4.4.3"
47
+ "ts-node": "^10.4.0",
48
+ "typescript": "^4.5.2"
49
49
  }
50
50
  }