bc-minecraft-project 1.20.0-0 → 1.20.32-1
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.
|
@@ -129,4 +129,4 @@ var MCAttributes;
|
|
|
129
129
|
return fs.promises.appendFile(filepath, `${property}=${value}\n`);
|
|
130
130
|
}
|
|
131
131
|
MCAttributes.append = append;
|
|
132
|
-
})(MCAttributes
|
|
132
|
+
})(MCAttributes || (exports.MCAttributes = MCAttributes = {}));
|
|
@@ -57,7 +57,7 @@ var Definition;
|
|
|
57
57
|
return false;
|
|
58
58
|
}
|
|
59
59
|
Definition.is = is;
|
|
60
|
-
})(Definition
|
|
60
|
+
})(Definition || (exports.Definition = Definition = {}));
|
|
61
61
|
/**The namespace that provides functions for the MCDefinition interface*/
|
|
62
62
|
var MCDefinition;
|
|
63
63
|
(function (MCDefinition) {
|
|
@@ -175,4 +175,4 @@ var MCDefinition;
|
|
|
175
175
|
return fs.promises.writeFile(filepath, content);
|
|
176
176
|
}
|
|
177
177
|
MCDefinition.save = save;
|
|
178
|
-
})(MCDefinition
|
|
178
|
+
})(MCDefinition || (exports.MCDefinition = MCDefinition = {}));
|
package/lib/src/Lib/mcignore.js
CHANGED
package/lib/src/Lib/project.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bc-minecraft-project",
|
|
3
|
-
"version": "1.20.
|
|
3
|
+
"version": "1.20.32-1",
|
|
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",
|
|
@@ -38,13 +38,13 @@
|
|
|
38
38
|
"lib/src/**/*"
|
|
39
39
|
],
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@types/chai": "^4.3.
|
|
42
|
-
"@types/mocha": "^10.0.
|
|
43
|
-
"@types/node": "^
|
|
44
|
-
"chai": "^4.3.
|
|
41
|
+
"@types/chai": "^4.3.8",
|
|
42
|
+
"@types/mocha": "^10.0.2",
|
|
43
|
+
"@types/node": "^20.8.6",
|
|
44
|
+
"chai": "^4.3.10",
|
|
45
45
|
"mocha": "^10.2.0",
|
|
46
|
-
"rimraf": "^
|
|
46
|
+
"rimraf": "^5.0.5",
|
|
47
47
|
"ts-node": "^10.9.1",
|
|
48
|
-
"typescript": "^
|
|
48
|
+
"typescript": "^5.2.2"
|
|
49
49
|
}
|
|
50
50
|
}
|