@mikrojs/firmware 0.5.0 → 0.5.2-pr-68.g331777c

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 CHANGED
@@ -27,4 +27,4 @@ See the [Custom Firmware](https://mikrojs.dev/develop/custom-firmware) docs for
27
27
  ## Requirements
28
28
 
29
29
  - Node.js >= 24
30
- - ESP-IDF >= 6.0 (installed via [EIM](https://docs.espressif.com/projects/esp-idf/en/stable/esp32/get-started/index.html))
30
+ - ESP-IDF >= 6.0.1 (installed via [EIM](https://docs.espressif.com/projects/esp-idf/en/stable/esp32/get-started/index.html))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mikrojs/firmware",
3
- "version": "0.5.0",
3
+ "version": "0.5.2-pr-68.g331777c",
4
4
  "description": "Mikro.js ESP32 firmware: ESP-IDF component, build tools, and project template",
5
5
  "keywords": [
6
6
  "esp-idf",
@@ -51,8 +51,8 @@
51
51
  },
52
52
  "dependencies": {
53
53
  "esbuild": "^0.28.0",
54
- "@mikrojs/quickjs": "0.5.0",
55
- "@mikrojs/native": "0.5.0"
54
+ "@mikrojs/quickjs": "0.5.2-pr-68.g331777c",
55
+ "@mikrojs/native": "0.5.2-pr-68.g331777c"
56
56
  },
57
57
  "engines": {
58
58
  "node": ">=24.0.0"
Binary file
Binary file
Binary file
Binary file
package/project.cmake CHANGED
@@ -10,9 +10,10 @@
10
10
  # project(my-firmware)
11
11
 
12
12
  # ── Validate ESP-IDF version ─────────────────────────────────────────
13
- if(IDF_VERSION_MAJOR LESS 6)
13
+ if(IDF_VERSION_MAJOR LESS 6 OR
14
+ (IDF_VERSION_MAJOR EQUAL 6 AND IDF_VERSION_MINOR EQUAL 0 AND IDF_VERSION_PATCH LESS 1))
14
15
  message(FATAL_ERROR
15
- "mikrojs requires ESP-IDF >= 6.0.0, found ${IDF_VERSION_MAJOR}.${IDF_VERSION_MINOR}.${IDF_VERSION_PATCH}. "
16
+ "mikrojs requires ESP-IDF >= 6.0.1, found ${IDF_VERSION_MAJOR}.${IDF_VERSION_MINOR}.${IDF_VERSION_PATCH}. "
16
17
  "Install a supported version via EIM: https://docs.espressif.com/projects/esp-idf/en/stable/esp32/get-started/index.html"
17
18
  )
18
19
  endif()