@markw65/monkeyc-optimizer 1.0.4 → 1.0.8

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
@@ -29,4 +29,56 @@ Initial release
29
29
  - Make the generated .cjs files work better with es modules (vscode doesn't work with es modules, so prettier-extension-monkeyc doesn't care - but for other projects importing this package it improves the behavior)
30
30
  - Generate separate debug/release jungle files.
31
31
 
32
- ---
32
+ ### 1.0.5
33
+
34
+ - Bump to version 1.0.11 of `@markw65/prettier-plugin-monkeyc` to fix an ObjectLiteral parsing issue.
35
+
36
+ ### 1.0.6
37
+
38
+ - Bump to version 1.0.12 of `@markw65/prettier-plugin-monkeyc` to fix multiple parser bugs
39
+ - Add lots of open source projects as tests. For now, just verify that optimizing the sources succeeds, not that the generated source is actually correct.
40
+
41
+ ### 1.0.7
42
+
43
+ More fixes found via open source projects.
44
+
45
+ - Fix parsing of quoted strings in jungle files
46
+ - Better error messages from the test framework
47
+ - Lazier handling of variables in jungle files
48
+ - Fix handling of negative enums that get completely removed
49
+ - Fix a bug analyzing empty classes
50
+ - Fix a typo that could result in consts being incorrectly eliminated
51
+ - Fix an edge case handling local jungle variables
52
+ - More test options, and add filters for some of the remote projects
53
+ - Try to clean up broken jungles and manifests
54
+ - Fix handling of unnamed callees
55
+ - Drop unrecognized devices
56
+ - Add support for a 'pick-one' device to aid testing
57
+ - Add a flag to remote projects to prevent trying to build them (some projects are broken to start with)
58
+
59
+ ### 1.0.8
60
+
61
+ - Improvements
62
+
63
+ - Update to @markw65/prettier-plugin-monkeyc:1.0.14
64
+ - Parse and respect \<build\> instructions in resource files
65
+ - Add minimal barrel support
66
+ - Better checking for whether the optimized source is up to date
67
+ - Rename locals which would be marked re-declaring
68
+
69
+ - Bug Fixes
70
+
71
+ - Generate the default jungle dynamically, since sdk/bin/default.jungle is generated lazily, and may not exist in newly installed sdks, or may be out of date after device installations.
72
+ - Fix a bug generating language settings in optimized jungle
73
+ - Fix a bug introduced by pick-one: don't modify a shared array
74
+ - Don't allow src paths to navigate out of the optimized directory
75
+ - Fix some windows paths issues
76
+
77
+ - Tests
78
+ - More parallelism while fetching remote projects for testing
79
+ - Add option to build the original project, rather than the optimized one
80
+ - Add support for overriding build options on a per project basis
81
+ - Add an option so we only 'fix' the manifest when running remote projects
82
+ - Check the manifest's application id, and throw in a valid one if necessary
83
+ - Allow project specific overrides for the generated monkey.jungle files, and use it to fix some projects
84
+ - Add patches for some broken projects