bc-minecraft-bedrock-command 1.2.14 → 1.2.19

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 CHANGED
@@ -11,3 +11,15 @@ A typescript package library that handles commands for minecraft bedrock
11
11
  const text = "execute @a ~ ~ ~ scoreboard players set @e[type=minecraft:sheep,r=3] range 1";
12
12
  const command = Command.parse(text);
13
13
  ```
14
+
15
+
16
+ ## Contributing
17
+
18
+ First, read the [contributing guide](./CONTRIBUTING.md). fork the project, clone it and run the following commands:
19
+
20
+ **Installation**
21
+
22
+ ```cmd
23
+ npm ci
24
+ npm update
25
+ ```
package/lib/src/main.d.ts CHANGED
@@ -1,2 +1,3 @@
1
1
  export * as CommandData from "./Lib/Data/include";
2
2
  export * from "./Lib/Types/include";
3
+ export * from './Lib/Data/CommandInfo';
package/lib/src/main.js CHANGED
@@ -13,4 +13,5 @@ Object.defineProperty(exports, "__esModule", { value: true });
13
13
  exports.CommandData = void 0;
14
14
  exports.CommandData = require("./Lib/Data/include");
15
15
  __exportStar(require("./Lib/Types/include"), exports);
16
+ __exportStar(require("./Lib/Data/CommandInfo"), exports);
16
17
  //# sourceMappingURL=main.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"main.js","sourceRoot":"","sources":["../../src/main.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,oDAAkD;AAClD,sDAAoC"}
1
+ {"version":3,"file":"main.js","sourceRoot":"","sources":["../../src/main.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,oDAAkD;AAClD,sDAAoC;AACpC,yDAAuC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bc-minecraft-bedrock-command",
3
- "version": "1.2.14",
3
+ "version": "1.2.19",
4
4
  "description": "A typescript package library that handles commands for minecraft bedrock",
5
5
  "main": "./lib/src/main.js",
6
6
  "types": "./lib/src/main.d.ts",
@@ -44,14 +44,14 @@
44
44
  "devDependencies": {
45
45
  "@types/chai": "^4.2.22",
46
46
  "@types/mocha": "^9.0.0",
47
- "@types/node": "^16.10.3",
47
+ "@types/node": "^16.11.10",
48
48
  "chai": "^4.3.4",
49
- "mocha": "^9.1.2",
49
+ "mocha": "^9.1.3",
50
50
  "rimraf": "^3.0.2",
51
- "ts-node": "^10.2.1",
52
- "typescript": "^4.4.3"
51
+ "ts-node": "^10.4.0",
52
+ "typescript": "^4.5.2"
53
53
  },
54
54
  "dependencies": {
55
- "bc-minecraft-bedrock-types": "^1.2.11"
55
+ "bc-minecraft-bedrock-types": "^1.2.19"
56
56
  }
57
57
  }