@markw65/monkeyc-optimizer 1.0.6 → 1.0.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/README.md +54 -1
- package/build/api.cjs +783 -24
- package/build/optimizer.cjs +581 -122
- package/build/sdk-util.cjs +7245 -0
- package/build/util.cjs +25 -25
- package/package.json +5 -3
package/README.md
CHANGED
|
@@ -38,4 +38,57 @@ Initial release
|
|
|
38
38
|
- Bump to version 1.0.12 of `@markw65/prettier-plugin-monkeyc` to fix multiple parser bugs
|
|
39
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
40
|
|
|
41
|
-
|
|
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
|
|
85
|
+
|
|
86
|
+
### 1.0.9
|
|
87
|
+
|
|
88
|
+
- Only generate the parts of the jungle we're going to use
|
|
89
|
+
- Also publish sdk-util.cjs
|
|
90
|
+
- Bump to @markw65/prettier-plugin-monkeyc:1.0.15
|
|
91
|
+
- Fixes a bug that dropped attributes on modules
|
|
92
|
+
- LiteralIntegerRe should be case insensitive
|
|
93
|
+
- Proper fix for promiseAll
|
|
94
|
+
- Auto-include barrels.jungle when its present
|