Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
  • master
  • renovate/python-3.x
  • 5.1.0
  • 5.2.0
  • 6.0.0
  • 6.0.1
  • 6.0.2
  • 6.1.0
  • 6.1.1
  • 6.1.2
  • 6.1.3
11 results

Target

Select target project
  • AlekSIS/libs/django-yarnpkg
  • edward/django-yarnpkg
  • detiste-guest/django-yarnpkg
3 results
Select Git revision
  • master
  • renovate/python-3.x
  • 5.1.0
  • 5.2.0
  • 6.0.0
  • 6.0.1
  • 6.0.2
  • 6.1.0
  • 6.1.1
  • 6.1.2
  • 6.1.3
11 results
Show changes

Commits on Source 2

Version 6.1.1 (2024-02-09)
=====================================================
* Fix compatibility with Yarn 4.x
Version 6.1.0 (2023-02-19) Version 6.1.0 (2023-02-19)
===================================================== =====================================================
......
...@@ -35,6 +35,7 @@ class YarnAdapter(object): ...@@ -35,6 +35,7 @@ class YarnAdapter(object):
def install(self, packages, *options): def install(self, packages, *options):
"""Install packages from yarn""" """Install packages from yarn"""
self.call_yarn(["init", "--yes"])
return self.call_yarn(['add'] + list(options) + list(packages)) return self.call_yarn(['add'] + list(options) + list(packages))
def _accumulate_dependencies(self, data): def _accumulate_dependencies(self, data):
......