@markw65/monkeyc-optimizer 1.0.12 → 1.0.15
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 +38 -0
- package/build/api.cjs +486 -198
- package/build/optimizer.cjs +486 -351
- package/build/sdk-util.cjs +8 -2
- package/build/src/api.d.ts +5 -4
- package/build/src/build.d.ts +2 -2
- package/build/src/jungles.d.ts +1 -1
- package/build/src/manifest.d.ts +3 -3
- package/build/src/mc-rewrite.d.ts +3 -3
- package/build/src/optimizer.d.ts +56 -41
- package/build/src/sdk-util.d.ts +5 -2
- package/build/src/util.d.ts +2 -3
- package/build/util.cjs +13 -18
- package/package.json +10 -4
package/README.md
CHANGED
|
@@ -123,3 +123,41 @@ More fixes found via open source projects.
|
|
|
123
123
|
### 1.0.12
|
|
124
124
|
|
|
125
125
|
- Fix connectiq and vscode paths on linux, and better error reporting when they're missing
|
|
126
|
+
|
|
127
|
+
### 1.0.13
|
|
128
|
+
|
|
129
|
+
- Improvements
|
|
130
|
+
|
|
131
|
+
- Add displayName to deviceInfo (for getTargetDevices in prettier-extenion-monkeyc)
|
|
132
|
+
- Throw a better error when we fail to read a jungle file
|
|
133
|
+
- Don't try to optimize barrel projects
|
|
134
|
+
|
|
135
|
+
- Code cleanup
|
|
136
|
+
|
|
137
|
+
- Update to @markw65/prettier-plugin-monkeyc@1.0.20 for mctree fixes
|
|
138
|
+
- Enable typescript strict checks
|
|
139
|
+
- Turn off synthetic default imports, and fix issues
|
|
140
|
+
- Better manifest typing
|
|
141
|
+
|
|
142
|
+
- Tests
|
|
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.
|