forked from platformio/platformio-core
Change manifests order for Library Manager
This commit is contained in:
@@ -39,6 +39,7 @@ PlatformIO 3.0
|
|||||||
* Do not overwrite project configuration variables when system environment
|
* Do not overwrite project configuration variables when system environment
|
||||||
variables are set
|
variables are set
|
||||||
* Handle dependencies when installing non-registry package/library (VCS, archive, local folder)
|
* Handle dependencies when installing non-registry package/library (VCS, archive, local folder)
|
||||||
|
(`issue #913 <https://github.com/platformio/platformio-core/issues/913>`_)
|
||||||
* Fixed package installing with VCS branch for Python 2.7.3
|
* Fixed package installing with VCS branch for Python 2.7.3
|
||||||
(`issue #885 <https://github.com/platformio/platformio-core/issues/885>`_)
|
(`issue #885 <https://github.com/platformio/platformio-core/issues/885>`_)
|
||||||
|
|
||||||
|
@@ -37,7 +37,7 @@ class LibraryManager(BasePkgManager):
|
|||||||
@property
|
@property
|
||||||
def manifest_names(self):
|
def manifest_names(self):
|
||||||
return [
|
return [
|
||||||
".library.json", "library.properties", "library.json",
|
".library.json", "library.json", "library.properties",
|
||||||
"module.json"
|
"module.json"
|
||||||
]
|
]
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user