@markw65/monkeyc-optimizer 1.0.9 → 1.0.10
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 +8 -0
- package/build/api.cjs +26 -26
- package/build/optimizer.cjs +3364 -200
- package/build/sdk-util.cjs +3 -3
- package/build/util.cjs +0 -1
- package/package.json +3 -2
package/build/sdk-util.cjs
CHANGED
|
@@ -4694,7 +4694,7 @@ function eventTargetAgnosticAddListener(emitter, name, listener, flags) {
|
|
|
4694
4694
|
|
|
4695
4695
|
/***/ }),
|
|
4696
4696
|
|
|
4697
|
-
/***/
|
|
4697
|
+
/***/ 8833:
|
|
4698
4698
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
4699
4699
|
|
|
4700
4700
|
// Generated by CoffeeScript 1.12.7
|
|
@@ -5157,7 +5157,7 @@ function eventTargetAgnosticAddListener(emitter, name, listener, flags) {
|
|
|
5157
5157
|
XMLRaw = __webpack_require__(9406);
|
|
5158
5158
|
XMLText = __webpack_require__(3595);
|
|
5159
5159
|
XMLProcessingInstruction = __webpack_require__(9181);
|
|
5160
|
-
XMLDummy = __webpack_require__(
|
|
5160
|
+
XMLDummy = __webpack_require__(8833);
|
|
5161
5161
|
NodeType = __webpack_require__(9335);
|
|
5162
5162
|
XMLNodeList = __webpack_require__(2390);
|
|
5163
5163
|
XMLNamedNodeMap = __webpack_require__(663);
|
|
@@ -6603,7 +6603,7 @@ function eventTargetAgnosticAddListener(emitter, name, listener, flags) {
|
|
|
6603
6603
|
|
|
6604
6604
|
XMLProcessingInstruction = __webpack_require__(9181);
|
|
6605
6605
|
|
|
6606
|
-
XMLDummy = __webpack_require__(
|
|
6606
|
+
XMLDummy = __webpack_require__(8833);
|
|
6607
6607
|
|
|
6608
6608
|
XMLDTDAttList = __webpack_require__(1179);
|
|
6609
6609
|
|
package/build/util.cjs
CHANGED
|
@@ -4144,7 +4144,6 @@ async function copyRecursiveAsNeeded(source, target, filter) {
|
|
|
4144
4144
|
}
|
|
4145
4145
|
const tstat = await fstat(target).catch(() => null);
|
|
4146
4146
|
if (!tstat || tstat.mtimeMs < sstat.mtimeMs) {
|
|
4147
|
-
console.log(`Copying ${source} to ${target}...`);
|
|
4148
4147
|
return promises_namespaceObject.copyFile(source, target, external_fs_.constants.COPYFILE_FICLONE);
|
|
4149
4148
|
}
|
|
4150
4149
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@markw65/monkeyc-optimizer",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.10",
|
|
5
5
|
"description": "Source to source optimizer for Garmin Monkey C code",
|
|
6
6
|
"main": "build/optimizer.cjs",
|
|
7
7
|
"exports": {
|
|
@@ -25,10 +25,11 @@
|
|
|
25
25
|
"author": "markw65",
|
|
26
26
|
"license": "MIT",
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@markw65/prettier-plugin-monkeyc": "^1.0.
|
|
28
|
+
"@markw65/prettier-plugin-monkeyc": "^1.0.16"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"eslint": "^8.12.0",
|
|
32
|
+
"extract-zip": "^2.0.1",
|
|
32
33
|
"glob": "^7.2.0",
|
|
33
34
|
"peggy": "^1.2.0",
|
|
34
35
|
"prettier": "^2.6.2",
|