@markw65/monkeyc-optimizer 1.0.8 → 1.0.11
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 +1157 -8253
- package/build/optimizer.cjs +4884 -1896
- package/build/sdk-util.cjs +7234 -0
- package/build/src/api.d.ts +8 -0
- package/build/src/build.d.ts +6 -0
- package/build/src/estree-types.d.ts +324 -0
- package/build/src/jungles.d.ts +51 -0
- package/build/src/launch.d.ts +2 -0
- package/build/src/manifest.d.ts +71 -0
- package/build/src/mc-rewrite.d.ts +7 -0
- package/build/src/negative-fixups.d.ts +1 -0
- package/build/src/optimizer.d.ts +177 -0
- package/build/src/sdk-util.d.ts +14 -0
- package/build/src/util.d.ts +14 -0
- package/build/util.cjs +123 -101
- package/package.json +12 -3
package/README.md
CHANGED
|
@@ -82,3 +82,40 @@ More fixes found via open source projects.
|
|
|
82
82
|
- Check the manifest's application id, and throw in a valid one if necessary
|
|
83
83
|
- Allow project specific overrides for the generated monkey.jungle files, and use it to fix some projects
|
|
84
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
|
|
95
|
+
|
|
96
|
+
### 1.0.10
|
|
97
|
+
|
|
98
|
+
- Add --execute option to test.js to run the projects after building them
|
|
99
|
+
- Add support for optimizing barrels
|
|
100
|
+
- Add some typing via jsdoc, and turn on ts validation in vscode
|
|
101
|
+
- Bump to @markw65/prettier-plugin-monkeyc:1.0.16 so ts recognizes its exports
|
|
102
|
+
- Add [garmin/connectiq-apps](https://github.com/garmin/connectiq-apps) and fix some minor issues it revealed
|
|
103
|
+
|
|
104
|
+
### 1.0.11
|
|
105
|
+
|
|
106
|
+
- Improvements
|
|
107
|
+
|
|
108
|
+
- Add option to run tests (for projects that have them)
|
|
109
|
+
- Add getProjectAnalysis api, to support various language features in @markw65/prettier-extension-monkeyc
|
|
110
|
+
|
|
111
|
+
- Bug fixes
|
|
112
|
+
|
|
113
|
+
- Fix lookup of self/me
|
|
114
|
+
|
|
115
|
+
- Code cleanup
|
|
116
|
+
- More typing. Check that build options match previous ones before re-using the optimized files
|
|
117
|
+
- Move everything over to typescript
|
|
118
|
+
- The project was becoming hard to maintain due to too much ad-hoc dynamic typing. This should allow easier/safer refactors and code cleanup.
|
|
119
|
+
- Refactoring to make analysis available in prettier-extension-monkeyc
|
|
120
|
+
- Generate .d.ts, and drop unneeded paths/resolve.alias
|
|
121
|
+
- Pull in a typed version of @markw65/prettier-plugin-monkeyc
|