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

Target

Select target project
  • AlekSIS/libs/django-yarnpkg
  • edward/django-yarnpkg
  • detiste-guest/django-yarnpkg
3 results
Show changes
Commits on Source (3)
Version 6.0.2 (2022-09-05)
=====================================================
* Fix yarnpkg call for non-install commands
Version 6.0.1 (2020-01-03)
=====================================================
* Prefer the yarnpkg command over yarn if installed due to naming conflict
on Debian
Version 6.0 (2019-12-07)
=====================================================
......
......@@ -16,7 +16,7 @@ class Command(BaseYarnCommand):
if self._is_single_command('install', args):
self._install([])
else:
yarn_adapter.call_bower(args)
yarn_adapter.call_yarn(args)
def _is_single_command(self, name, args):
return len(args) == 1 and args[0] == name
from setuptools import setup, find_packages
version = '6.0.1'
version = '6.0.2'
setup(
name='django-yarnpkg',
......