minecraft-datapack-language 15.4.9__py3-none-any.whl → 15.4.11__py3-none-any.whl

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.
@@ -28,7 +28,7 @@ version_tuple: VERSION_TUPLE
28
28
  commit_id: COMMIT_ID
29
29
  __commit_id__: COMMIT_ID
30
30
 
31
- __version__ = version = '15.4.9'
32
- __version_tuple__ = version_tuple = (15, 4, 9)
31
+ __version__ = version = '15.4.11'
32
+ __version_tuple__ = version_tuple = (15, 4, 11)
33
33
 
34
34
  __commit_id__ = commit_id = None
@@ -11,7 +11,79 @@ def show_main_help():
11
11
  except ImportError:
12
12
  version = "unknown"
13
13
 
14
- print(f"""
14
+ try:
15
+ from .cli_colors import color, print_header, print_title, print_section, print_separator, print_info, print_bullet, print_code
16
+
17
+ # Header
18
+ print()
19
+ print_header(f"MDL (Minecraft Datapack Language) CLI - v{version}")
20
+ print_separator("=", 70)
21
+ print()
22
+
23
+ # Description
24
+ print(color.info("MDL is a simplified language for creating Minecraft datapacks with variables,"))
25
+ print(color.info("control structures, and easy syntax. This CLI tool compiles MDL files into"))
26
+ print(color.info("standard Minecraft datapacks."))
27
+ print()
28
+
29
+ # Available Commands
30
+ print_section("Available Commands")
31
+ print()
32
+ print(f" {color.command('build')} - Compile MDL files into a Minecraft datapack")
33
+ print(f" {color.command('check')} - Validate MDL files for syntax and semantic errors")
34
+ print(f" {color.command('new')} - Create a new MDL project with template files")
35
+ print()
36
+
37
+ # Detailed Help
38
+ print_section("Detailed Help")
39
+ print()
40
+ print(color.info("For detailed information about any command, use:"))
41
+ print(f" {color.code('mdl <command> --help')}")
42
+ print()
43
+ print(color.info("Examples:"))
44
+ print(f" {color.code('mdl build --help')} - Show build command options")
45
+ print(f" {color.code('mdl check --help')} - Show check command options")
46
+ print(f" {color.code('mdl new --help')} - Show new project options")
47
+ print()
48
+
49
+ # Quick Start
50
+ print_section("Quick Start")
51
+ print()
52
+ print(f"1. Create a new project:")
53
+ print(f" {color.code('mdl new my_project')}")
54
+ print()
55
+ print(f"2. Build your datapack:")
56
+ print(f" {color.code('mdl build --mdl my_project.mdl -o dist')}")
57
+ print()
58
+ print(f"3. Check for errors:")
59
+ print(f" {color.code('mdl check my_project.mdl')}")
60
+ print()
61
+
62
+ # Documentation
63
+ print_section("Documentation")
64
+ print()
65
+ print_bullet(f"Language Reference: {color.file_path('https://www.mcmdl.com/docs/language-reference')}")
66
+ print_bullet(f"CLI Reference: {color.file_path('https://www.mcmdl.com/docs/cli-reference')}")
67
+ print_bullet(f"Examples: {color.file_path('https://www.mcmdl.com/docs/examples')}")
68
+ print()
69
+
70
+ # Error Reporting
71
+ print_section("Error Reporting")
72
+ print()
73
+ print(color.info("MDL provides detailed error messages with:"))
74
+ print_bullet("Exact file location (line, column)")
75
+ print_bullet("Context lines showing the problematic code")
76
+ print_bullet("Helpful suggestions for fixing issues")
77
+ print_bullet("Multiple error collection and reporting")
78
+ print()
79
+
80
+ # Support
81
+ print(color.info(f"For support and bug reports, visit: {color.file_path('https://github.com/aaron777collins/MinecraftDatapackLanguage')}"))
82
+ print()
83
+
84
+ except ImportError:
85
+ # Fallback if colors aren't available
86
+ print(f"""
15
87
  [GAME] MDL (Minecraft Datapack Language) CLI - v{version}
16
88
  ====================================================
17
89
 
@@ -71,7 +143,120 @@ For support and bug reports, visit: https://github.com/aaron777collins/Minecraft
71
143
 
72
144
  def show_build_help():
73
145
  """Display detailed help for the build command."""
74
- print("""
146
+ try:
147
+ from .cli_colors import color, print_header, print_title, print_section, print_separator, print_info, print_bullet, print_code
148
+
149
+ # Header
150
+ print()
151
+ print_header("MDL Build Command - Compile MDL Files to Minecraft Datapacks")
152
+ print_separator("=", 75)
153
+ print()
154
+
155
+ # Description
156
+ print(color.info("The build command compiles MDL files into standard Minecraft datapacks that can"))
157
+ print(color.info("be loaded directly into Minecraft."))
158
+ print()
159
+
160
+ # Usage
161
+ print_section("Usage")
162
+ print()
163
+ print(f" {color.code('mdl build --mdl <input> -o <output> [options]')}")
164
+ print()
165
+
166
+ # Arguments
167
+ print_section("Arguments")
168
+ print()
169
+ print(f" {color.command('--mdl, -m')} {color.highlight('<input>')} Input MDL file or directory containing .mdl files")
170
+ print(f" Examples: {color.code('--mdl project.mdl')}, {color.code('--mdl src/')}, {color.code('--mdl .')}")
171
+ print()
172
+ print(f" {color.command('-o, --output')} {color.highlight('<output>')} Output directory for the generated datapack")
173
+ print(f" Example: {color.code('-o dist')}, {color.code('-o build/my_pack')}")
174
+ print()
175
+
176
+ # Options
177
+ print_section("Options")
178
+ print()
179
+ print(f" {color.command('--verbose, -v')} Enable verbose output with detailed build information")
180
+ print(f" Shows file parsing, function generation, and progress")
181
+ print()
182
+ print(f" {color.command('--pack-format')} {color.highlight('<num>')} Override the pack format number in pack.mcmeta")
183
+ print(f" Default: {color.highlight('82')} (Minecraft 1.20+)")
184
+ print(f" Example: {color.code('--pack-format 15')} (for older versions)")
185
+ print()
186
+ print(f" {color.command('--wrapper')} {color.highlight('<name>')} Create a zip file with the specified name")
187
+ print(f" Example: {color.code('--wrapper my_awesome_pack')}")
188
+ print()
189
+ print(f" {color.command('--ignore-warnings')} Suppress warning messages during build")
190
+ print(f" Only show errors, hide all warnings")
191
+ print()
192
+
193
+ # Examples
194
+ print_section("Examples")
195
+ print()
196
+ print(f"1. Build a single MDL file:")
197
+ print(f" {color.code('mdl build --mdl hello_world.mdl -o dist')}")
198
+ print()
199
+ print(f"2. Build all MDL files in a directory:")
200
+ print(f" {color.code('mdl build --mdl src/ -o build/my_pack')}")
201
+ print()
202
+ print(f"3. Build current directory with verbose output:")
203
+ print(f" {color.code('mdl build --mdl . -o dist --verbose')}")
204
+ print()
205
+ print(f"4. Build with custom pack format and zip wrapper:")
206
+ print(f" {color.code('mdl build --mdl project.mdl -o dist --pack-format 15 --wrapper my_pack')}")
207
+ print()
208
+ print(f"5. Build multiple files in a directory:")
209
+ print(f" {color.code('mdl build --mdl examples/ -o output --verbose')}")
210
+ print()
211
+
212
+ # Output Structure
213
+ print_section("Output Structure")
214
+ print()
215
+ print(color.info("The build command creates a standard Minecraft datapack structure:"))
216
+ print()
217
+ print(f" {color.file_path('output/')}")
218
+ print(f" ├── {color.file_path('pack.mcmeta')} # Datapack metadata")
219
+ print(f" └── {color.file_path('data/')}")
220
+ print(f" ├── {color.file_path('<namespace>/')} # Your datapack namespace")
221
+ print(f" │ └── {color.file_path('function/')} # Generated functions")
222
+ print(f" │ ├── {color.file_path('load.mcfunction')}")
223
+ print(f" │ └── {color.file_path('*.mcfunction')}")
224
+ print(f" └── {color.file_path('minecraft/')}")
225
+ print(f" └── {color.file_path('tags/')}")
226
+ print(f" └── {color.file_path('function/')} # Load/tick tags")
227
+ print(f" ├── {color.file_path('load.json')}")
228
+ print(f" └── {color.file_path('tick.json')}")
229
+ print()
230
+
231
+ # Features
232
+ print_section("Features")
233
+ print()
234
+ print_bullet("Multi-file compilation - Merge multiple .mdl files into one datapack")
235
+ print_bullet("Variable system - Automatic scoreboard objective creation")
236
+ print_bullet("Control structures - If/else statements and while loops")
237
+ print_bullet("Function calls - Call other functions within your datapack")
238
+ print_bullet("Raw commands - Use native Minecraft commands with $variable$ substitution")
239
+ print_bullet("Error handling - Detailed error reporting with suggestions")
240
+ print_bullet("Progress tracking - Verbose mode shows build progress")
241
+ print()
242
+
243
+ # Error Handling
244
+ print_section("Error Handling")
245
+ print()
246
+ print(color.info("The build command provides comprehensive error reporting:"))
247
+ print_bullet("Syntax errors with exact line and column numbers")
248
+ print_bullet("Context lines showing the problematic code")
249
+ print_bullet("Helpful suggestions for fixing issues")
250
+ print_bullet("Multiple error collection (won't stop on first error)")
251
+ print()
252
+
253
+ # More Info
254
+ print(color.info(f"For more information, visit: {color.file_path('https://www.mcmdl.com/docs/cli-reference#build')}"))
255
+ print()
256
+
257
+ except ImportError:
258
+ # Fallback if colors aren't available
259
+ print("""
75
260
  [BUILD] MDL Build Command - Compile MDL Files to Minecraft Datapacks
76
261
  ===============================================================
77
262
 
@@ -170,7 +355,149 @@ For more information, visit: https://www.mcmdl.com/docs/cli-reference#build
170
355
 
171
356
  def show_check_help():
172
357
  """Display detailed help for the check command."""
173
- print("""
358
+ try:
359
+ from .cli_colors import color, print_header, print_title, print_section, print_separator, print_info, print_bullet, print_code
360
+
361
+ # Header
362
+ print()
363
+ print_header("MDL Check Command - Validate MDL Files for Errors")
364
+ print_separator("=", 70)
365
+ print()
366
+
367
+ # Description
368
+ print(color.info("The check command validates MDL files for syntax errors, semantic issues, and"))
369
+ print(color.info("potential problems without generating any output files."))
370
+ print()
371
+
372
+ # Usage
373
+ print_section("Usage")
374
+ print()
375
+ print(f" {color.code('mdl check <input> [options]')}")
376
+ print()
377
+
378
+ # Arguments
379
+ print_section("Arguments")
380
+ print()
381
+ print(f" {color.highlight('<input>')} Input MDL file or directory containing .mdl files")
382
+ print(f" Examples: {color.code('project.mdl')}, {color.code('src/')}, {color.code('.')}")
383
+ print()
384
+
385
+ # Options
386
+ print_section("Options")
387
+ print()
388
+ print(f" {color.command('--verbose, -v')} Enable verbose output with detailed validation information")
389
+ print(f" Shows parsing steps, token analysis, and detailed error context")
390
+ print()
391
+ print(f" {color.command('--ignore-warnings')} Suppress warning messages during check")
392
+ print(f" Only show errors, hide all warnings")
393
+ print()
394
+
395
+ # Examples
396
+ print_section("Examples")
397
+ print()
398
+ print(f"1. Check a single MDL file:")
399
+ print(f" {color.code('mdl check hello_world.mdl')}")
400
+ print()
401
+ print(f"2. Check all MDL files in a directory:")
402
+ print(f" {color.code('mdl check src/')}")
403
+ print()
404
+ print(f"3. Check current directory with verbose output:")
405
+ print(f" {color.code('mdl check . --verbose')}")
406
+ print()
407
+ print(f"4. Check multiple files:")
408
+ print(f" {color.code('mdl check examples/ --verbose')}")
409
+ print()
410
+
411
+ # Validation Types
412
+ print_section("Validation Types")
413
+ print()
414
+ print(color.info("The check command performs comprehensive validation:"))
415
+ print()
416
+
417
+ print_section("Syntax Validation")
418
+ print_bullet("Lexical analysis - Token recognition and validation")
419
+ print_bullet("Parsing - AST construction and syntax structure")
420
+ print_bullet("Grammar validation - Language rule compliance")
421
+ print()
422
+
423
+ print_section("Semantic Validation")
424
+ print_bullet("Variable declarations - Proper variable naming and scope")
425
+ print_bullet("Function definitions - Valid function signatures")
426
+ print_bullet("Control structures - Proper if/else and while loop syntax")
427
+ print_bullet("Command validation - Minecraft command syntax checking")
428
+ print()
429
+
430
+ print_section("Error Detection")
431
+ print_bullet("Missing semicolons and braces")
432
+ print_bullet("Invalid variable names or references")
433
+ print_bullet("Unclosed strings and comments")
434
+ print_bullet("Malformed control structures")
435
+ print_bullet("Invalid selector syntax")
436
+ print_bullet("Undefined function calls")
437
+ print()
438
+
439
+ # Error Reporting
440
+ print_section("Error Reporting")
441
+ print()
442
+ print(color.info("The check command provides detailed error information:"))
443
+ print()
444
+
445
+ print_section("Error Details")
446
+ print_bullet("File path and exact location (line, column)")
447
+ print_bullet("Error type and description")
448
+ print_bullet("Context lines showing the problematic code")
449
+ print_bullet("Helpful suggestions for fixing issues")
450
+ print()
451
+
452
+ print_section("Error Types")
453
+ print_bullet("MDLSyntaxError - Basic syntax violations")
454
+ print_bullet("MDLLexerError - Token recognition issues")
455
+ print_bullet("MDLParserError - Parsing and structure problems")
456
+ print_bullet("MDLValidationError - Semantic validation failures")
457
+ print_bullet("MDLFileError - File access and I/O issues")
458
+ print()
459
+
460
+ # Example Error Output
461
+ print_section("Example Error Output")
462
+ print()
463
+ print(color.info(" Error 1: MDLSyntaxError in test.mdl:15:8"))
464
+ print(color.info(" Missing closing brace for if statement"))
465
+ print(color.info(" Context:"))
466
+ print(f" {color.line_number('13')}: if (score > 10) {{")
467
+ print(f" {color.line_number('14')}: say \"High score!\"")
468
+ print(f" {color.line_number('15')}: score = 0")
469
+ print(f" {color.line_number('16')}: }}")
470
+ print()
471
+ print(color.suggestion(" Suggestion: Add closing brace '}' after line 15"))
472
+ print()
473
+
474
+ # Advanced Features
475
+ print_section("Advanced Features")
476
+ print()
477
+ print_bullet("Multi-file validation - Check entire projects at once")
478
+ print_bullet("Directory support - Recursively check all .mdl files")
479
+ print_bullet("Error collection - Report all errors, not just the first one")
480
+ print_bullet("Context preservation - Show surrounding code for better debugging")
481
+ print_bullet("Suggestion system - Provide helpful fix recommendations")
482
+ print()
483
+
484
+ # Integration
485
+ print_section("Integration")
486
+ print()
487
+ print(color.info("The check command is perfect for:"))
488
+ print_bullet("CI/CD pipelines - Automated validation")
489
+ print_bullet("Development workflows - Pre-commit checks")
490
+ print_bullet("Learning MDL - Understand syntax requirements")
491
+ print_bullet("Debugging - Identify and fix issues quickly")
492
+ print()
493
+
494
+ # More Info
495
+ print(color.info(f"For more information, visit: {color.file_path('https://www.mcmdl.com/docs/cli-reference#check')}"))
496
+ print()
497
+
498
+ except ImportError:
499
+ # Fallback if colors aren't available
500
+ print("""
174
501
  [CHECK] MDL Check Command - Validate MDL Files for Errors
175
502
  ====================================================
176
503
 
@@ -291,7 +618,164 @@ For more information, visit: https://www.mcmdl.com/docs/cli-reference#check
291
618
 
292
619
  def show_new_help():
293
620
  """Display detailed help for the new command."""
294
- print("""
621
+ try:
622
+ from .cli_colors import color, print_header, print_title, print_section, print_separator, print_info, print_bullet, print_code
623
+
624
+ # Header
625
+ print()
626
+ print_header("MDL New Command - Create New MDL Projects")
627
+ print_separator("=", 65)
628
+ print()
629
+
630
+ # Description
631
+ print(color.info("The new command creates a new MDL project with template files and proper"))
632
+ print(color.info("structure to get you started quickly."))
633
+ print()
634
+
635
+ # Usage
636
+ print_section("Usage")
637
+ print()
638
+ print(f" {color.code('mdl new <project_name> [options]')}")
639
+ print()
640
+
641
+ # Arguments
642
+ print_section("Arguments")
643
+ print()
644
+ print(f" {color.highlight('<project_name>')} Name for your new MDL project")
645
+ print(f" This will be used for the project directory and pack name")
646
+ print(f" Example: {color.code('my_awesome_pack')}, {color.code('hello_world')}, {color.code('magic_system')}")
647
+ print()
648
+
649
+ # Options
650
+ print_section("Options")
651
+ print()
652
+ print(f" {color.command('--pack-name')} {color.highlight('<name>')} Custom name for the datapack (defaults to project name)")
653
+ print(f" This appears in the pack.mcmeta description")
654
+ print(f" Example: {color.code('--pack-name "My Awesome Magic Pack"')}")
655
+ print()
656
+ print(f" {color.command('--pack-format')} {color.highlight('<num>')} Pack format number for Minecraft version compatibility")
657
+ print(f" Default: {color.highlight('82')} (Minecraft 1.20+)")
658
+ print(f" Example: {color.code('--pack-format 15')} (for older versions)")
659
+ print()
660
+
661
+ # Examples
662
+ print_section("Examples")
663
+ print()
664
+ print(f"1. Create a basic project:")
665
+ print(f" {color.code('mdl new hello_world')}")
666
+ print()
667
+ print(f"2. Create project with custom pack name:")
668
+ print(f" {color.code('mdl new magic_system --pack-name "Epic Magic Pack"')}")
669
+ print()
670
+ print(f"3. Create project for older Minecraft version:")
671
+ print(f" {color.code('mdl new retro_pack --pack-format 15')}")
672
+ print()
673
+ print(f"4. Create project with all custom options:")
674
+ print(f" {color.code('mdl new my_project --pack-name "My Project" --pack-format 82')}")
675
+ print()
676
+
677
+ # Generated Structure
678
+ print_section("Generated Structure")
679
+ print()
680
+ print(color.info("The new command creates a complete project structure:"))
681
+ print()
682
+ print(f" {color.file_path('<project_name>/')}")
683
+ print(f" ├── {color.file_path('README.md')} # Project documentation")
684
+ print(f" └── {color.file_path('<project_name>.mdl')} # Main MDL file with template code")
685
+ print()
686
+
687
+ # Template Content
688
+ print_section("Template Content")
689
+ print()
690
+ print(color.info("The generated MDL file includes:"))
691
+ print()
692
+
693
+ print_section("Pack Declaration")
694
+ print(f"{color.code('pack {')}")
695
+ print(f"{color.code(' name: "project_name"')}")
696
+ print(f"{color.code(' format: 82')}")
697
+ print(f"{color.code(' description: "Generated by MDL CLI"')}")
698
+ print(f"{color.code('}')}")
699
+ print()
700
+
701
+ print_section("Example Functions")
702
+ print(f"{color.code('function main {')}")
703
+ print(f"{color.code(' say "Hello from MDL!"')}")
704
+ print(f"{color.code(' ')}")
705
+ print(f"{color.code(' // Variable example')}")
706
+ print(f"{color.code(' score = 10')}")
707
+ print(f"{color.code(' say "Score: $score$"')}")
708
+ print(f"{color.code(' ')}")
709
+ print(f"{color.code(' // Conditional example')}")
710
+ print(f"{color.code(' if (score > 5) {')}")
711
+ print(f"{color.code(' say "High score!"')}")
712
+ print(f"{color.code(' } else {')}")
713
+ print(f"{color.code(' say "Try again!"')}")
714
+ print(f"{color.code(' }')}")
715
+ print(f"{color.code('}')}")
716
+ print()
717
+ print(f"{color.code('function load {')}")
718
+ print(f"{color.code(' // This function runs when the datapack loads')}")
719
+ print(f"{color.code(' say "Datapack loaded successfully!"')}")
720
+ print(f"{color.code('}')}")
721
+ print()
722
+
723
+ # Features
724
+ print_section("Features")
725
+ print()
726
+ print_bullet("Complete project setup - Ready-to-use structure")
727
+ print_bullet("Template code - Working examples to learn from")
728
+ print_bullet("Proper pack metadata - Correct pack.mcmeta configuration")
729
+ print_bullet("Documentation - README with usage instructions")
730
+ print_bullet("Best practices - Follows MDL conventions")
731
+ print()
732
+
733
+ # Getting Started
734
+ print_section("Getting Started")
735
+ print()
736
+ print(color.info("After creating a new project:"))
737
+ print()
738
+ print(f"1. Navigate to the project directory:")
739
+ print(f" {color.code('cd <project_name>')}")
740
+ print()
741
+ print(f"2. Edit the MDL file:")
742
+ print(f" # Edit {color.file_path('<project_name>.mdl')} with your code")
743
+ print()
744
+ print(f"3. Build the datapack:")
745
+ print(f" {color.code('mdl build --mdl <project_name>.mdl -o dist')}")
746
+ print()
747
+ print(f"4. Check for errors:")
748
+ print(f" {color.code('mdl check <project_name>.mdl')}")
749
+ print()
750
+ print(f"5. Load in Minecraft:")
751
+ print(f" # Copy the dist folder to your world's datapacks directory")
752
+ print()
753
+
754
+ # Tips
755
+ print_section("Tips")
756
+ print()
757
+ print_bullet("Use descriptive project names - They become your namespace")
758
+ print_bullet("Start with the template code - It demonstrates key MDL features")
759
+ print_bullet("Check your code regularly - Use `mdl check` during development")
760
+ print_bullet("Use version control - Git is great for tracking changes")
761
+ print_bullet("Read the documentation - Learn about all available features")
762
+ print()
763
+
764
+ # Next Steps
765
+ print_section("Next Steps")
766
+ print()
767
+ print_bullet(f"Language Reference: {color.file_path('https://www.mcmdl.com/docs/language-reference')}")
768
+ print_bullet(f"Examples: {color.file_path('https://www.mcmdl.com/docs/examples')}")
769
+ print_bullet(f"CLI Reference: {color.file_path('https://www.mcmdl.com/docs/cli-reference')}")
770
+ print()
771
+
772
+ # More Info
773
+ print(color.info(f"For more information, visit: {color.file_path('https://www.mcmdl.com/docs/cli-reference#new')}"))
774
+ print()
775
+
776
+ except ImportError:
777
+ # Fallback if colors aren't available
778
+ print("""
295
779
  [NEW] MDL New Command - Create New MDL Projects
296
780
  ============================================
297
781
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: minecraft-datapack-language
3
- Version: 15.4.9
3
+ Version: 15.4.11
4
4
  Summary: Compile JavaScript-style MDL language or Python API into a Minecraft datapack (1.21+ ready). Features variables, control flow, error handling, and VS Code extension.
5
5
  Project-URL: Homepage, https://www.mcmdl.com
6
6
  Project-URL: Documentation, https://www.mcmdl.com/docs
@@ -1,11 +1,11 @@
1
1
  minecraft_datapack_language/__init__.py,sha256=i-qCchbe5b2Fshgc6yCU9mddOLs2UBt9SAcLqfUIrT0,606
2
- minecraft_datapack_language/_version.py,sha256=kBS_aJPr-qhhnmfVNaDqUObyMzWJEMpsVQ-KXHKYm_8,706
2
+ minecraft_datapack_language/_version.py,sha256=X9AfLjCps0UnVbGmwDfHoU1fD9MullAQLp-c4I3fpz0,708
3
3
  minecraft_datapack_language/ast_nodes.py,sha256=pgjI2Nlap3ixFPgWqGSkqncG9zB91h5BKgRjtcJqMew,2118
4
4
  minecraft_datapack_language/cli.py,sha256=p5A_tEEXugN2NhQFbbgfwi4FxbWYD91RWeKR_A3Vuec,6263
5
5
  minecraft_datapack_language/cli_build.py,sha256=HvrQdINx8EmF4OW6IZCx_S6Rs4NZQ-eB1PSlcDMnCmA,47939
6
6
  minecraft_datapack_language/cli_check.py,sha256=bPq9gHsxQ1CIiftkrAtRCifWkVAyjp5c8Oay2NNQ1qs,6277
7
7
  minecraft_datapack_language/cli_colors.py,sha256=Ims0KbdYpsiwoqv96Y_g89uOB5l1qdETm_P51rkljfk,7884
8
- minecraft_datapack_language/cli_help.py,sha256=jUTHUQBONAZKVTdQK9tNPXq4c_6xpsafNOvHDjkEldg,12243
8
+ minecraft_datapack_language/cli_help.py,sha256=JLrA7XvzQymW-_L97vPgij5EUzml8HC_wWGLwwFX6T0,34405
9
9
  minecraft_datapack_language/cli_new.py,sha256=_pj5EeXESAG00C80_os9jONIXAMcsu2eoR8xVJWDw6g,9347
10
10
  minecraft_datapack_language/cli_utils.py,sha256=nl22j96vpCW0XRMpD_zjwamnMU4e4LXEjACsnwiFGzs,9931
11
11
  minecraft_datapack_language/dir_map.py,sha256=HmxFkuvWGkzHF8o_GFb4BpuMCRc6QMw8UbmcAI8JVdY,1788
@@ -17,9 +17,9 @@ minecraft_datapack_language/mdl_linter.py,sha256=z85xoAglENurCh30bR7kEHZ_JeMxcYa
17
17
  minecraft_datapack_language/mdl_parser_js.py,sha256=SQzc67pKls3NVnQaT0xIILGqpZYAmcZn78TQ0KIM4TE,40216
18
18
  minecraft_datapack_language/pack.py,sha256=nYiXQ3jgJlDfc4m-65f7C2LFhDRioaUU_XVy6Na4SJI,34625
19
19
  minecraft_datapack_language/utils.py,sha256=Aq0HAGlXqj9BUTEjaEilpvzEW0EtZYYMMwOqG9db6dE,684
20
- minecraft_datapack_language-15.4.9.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
21
- minecraft_datapack_language-15.4.9.dist-info/METADATA,sha256=OToHEbhvuer4uXbIRTJGD8DZzuiZ-aUqZAOINC5qcsM,35229
22
- minecraft_datapack_language-15.4.9.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
23
- minecraft_datapack_language-15.4.9.dist-info/entry_points.txt,sha256=c6vjBeCiyQflvPHBRyBk2nJCSfYt3Oc7Sc9V87ySi_U,108
24
- minecraft_datapack_language-15.4.9.dist-info/top_level.txt,sha256=ADtFI476tbKLLxEAA-aJQAfg53MA3k_DOb0KTFiggfw,28
25
- minecraft_datapack_language-15.4.9.dist-info/RECORD,,
20
+ minecraft_datapack_language-15.4.11.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
21
+ minecraft_datapack_language-15.4.11.dist-info/METADATA,sha256=QdbWN_dsAopsjiMH_bO5bf3OWt_MK0JzTFMT5P6n2oE,35230
22
+ minecraft_datapack_language-15.4.11.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
23
+ minecraft_datapack_language-15.4.11.dist-info/entry_points.txt,sha256=c6vjBeCiyQflvPHBRyBk2nJCSfYt3Oc7Sc9V87ySi_U,108
24
+ minecraft_datapack_language-15.4.11.dist-info/top_level.txt,sha256=ADtFI476tbKLLxEAA-aJQAfg53MA3k_DOb0KTFiggfw,28
25
+ minecraft_datapack_language-15.4.11.dist-info/RECORD,,