Use common manifest for ESP8266 / ESP32 dev/platforms with @platformio (#292)

This commit is contained in:
Ivan Kravets 2017-11-26 00:54:00 +02:00 committed by Me No Dev
parent 63b5303880
commit 6edc431034
2 changed files with 14 additions and 31 deletions

View File

@ -1,23 +0,0 @@
{
"name":"ESPAsyncWebServer",
"description":"Asynchronous HTTP and WebSocket Server Library for ESP8266",
"keywords":"http,async,websocket,webserver",
"authors":
{
"name": "Hristo Gochkov",
"maintainer": true
},
"repository":
{
"type": "git",
"url": "https://github.com/me-no-dev/ESPAsyncWebServer.git"
},
"version": "1.1.0",
"license": "LGPL-3.0",
"frameworks": "arduino",
"platforms": ["espressif8266", "espressif8266_stage"],
"dependencies":
{
"name": "ESPAsyncTCP"
}
}

View File

@ -1,6 +1,6 @@
{
"name":"AsyncWebServer",
"description":"Asynchronous HTTP and WebSocket Server Library for ESP32",
"name":"ESP Async WebServer",
"description":"Asynchronous HTTP and WebSocket Server Library for ESP8266 and ESP32",
"keywords":"http,async,websocket,webserver",
"authors":
{
@ -12,12 +12,18 @@
"type": "git",
"url": "https://github.com/me-no-dev/ESPAsyncWebServer.git"
},
"version": "1.1.0",
"version": "1.1.1",
"license": "LGPL-3.0",
"frameworks": "arduino",
"platforms": ["espressif32", "espressif32_stage"],
"dependencies":
{
"name": "AsyncTCP"
}
"platforms": ["espressif8266", "espressif32"],
"dependencies": [
{
"name": "ESPAsyncTCP",
"platforms": "espressif8266"
},
{
"name": "AsyncTCP",
"platforms": "espressif32"
}
]
}