@markw65/monkeyc-optimizer 1.0.13 → 1.0.16
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 +37 -0
- package/build/api.cjs +573 -155
- package/build/optimizer.cjs +584 -235
- package/build/sdk-util.cjs +8 -2
- package/build/src/inliner.d.ts +4 -0
- package/build/src/optimizer.d.ts +52 -30
- package/build/src/sdk-util.d.ts +4 -2
- package/build/util.cjs +12 -4
- package/package.json +13 -6
package/README.md
CHANGED
|
@@ -141,3 +141,40 @@ More fixes found via open source projects.
|
|
|
141
141
|
|
|
142
142
|
- Tests
|
|
143
143
|
- Add date/time to test logging
|
|
144
|
+
|
|
145
|
+
### 1.0.14
|
|
146
|
+
|
|
147
|
+
- Bug fixes
|
|
148
|
+
|
|
149
|
+
- When reading a barrel project with no products, add all products by default
|
|
150
|
+
- Only set language specific paths for languages that are supported by the device
|
|
151
|
+
- Remove comments that are completely contained within removed nodes
|
|
152
|
+
|
|
153
|
+
- Code cleanup
|
|
154
|
+
- Upgrade to @markw65/prettier-plugin-monkeyc@1.0.21 for some typescript fixes
|
|
155
|
+
- npm upgrade to pickup ts 4.7.2
|
|
156
|
+
- Add types to package exports for ts 4.7.2
|
|
157
|
+
- Better handling of program-logic errors
|
|
158
|
+
|
|
159
|
+
### 1.0.15
|
|
160
|
+
|
|
161
|
+
- Bug fixes
|
|
162
|
+
- Inject the superclass name into the classes namespace
|
|
163
|
+
- Separate type vs value lookup, and use the correct one based on context.
|
|
164
|
+
|
|
165
|
+
### 1.0.16
|
|
166
|
+
|
|
167
|
+
- Bug fixes
|
|
168
|
+
|
|
169
|
+
- Fix off-by-one in removeNodeComments
|
|
170
|
+
- Fix lookup to consistently lookup types or values.
|
|
171
|
+
- Fix lookup of superclass names
|
|
172
|
+
|
|
173
|
+
- New Features
|
|
174
|
+
|
|
175
|
+
- Add a simple inliner
|
|
176
|
+
- Add support for conditional inlining based on excludeAnnotations
|
|
177
|
+
|
|
178
|
+
- Testing
|
|
179
|
+
- Add support for @match pragmas to check the optimization results
|
|
180
|
+
- Add a test project, with some inlining tests
|