redscript-mc 1.2.8 → 1.2.9
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/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/index.ts +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*
|
|
4
4
|
* Main entry point for programmatic usage.
|
|
5
5
|
*/
|
|
6
|
-
export declare const version = "1.2.
|
|
6
|
+
export declare const version = "1.2.9";
|
|
7
7
|
import type { Warning } from './lowering';
|
|
8
8
|
import { DatapackFile } from './codegen/mcfunction';
|
|
9
9
|
import type { IRModule } from './ir/types';
|
package/dist/index.js
CHANGED
|
@@ -9,7 +9,7 @@ exports.MCCommandValidator = exports.generateDatapack = exports.optimize = expor
|
|
|
9
9
|
exports.compile = compile;
|
|
10
10
|
exports.check = check;
|
|
11
11
|
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
|
12
|
-
exports.version = '1.2.
|
|
12
|
+
exports.version = '1.2.9';
|
|
13
13
|
const lexer_1 = require("./lexer");
|
|
14
14
|
const parser_1 = require("./parser");
|
|
15
15
|
const typechecker_1 = require("./typechecker");
|
package/package.json
CHANGED