Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
django-yarnpkg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
AlekSIS®
Libraries
django-yarnpkg
Compare revisions
e1f322680dddcc56434cd8ba6c0a9963742f7563 to 67c54abb79d50ef5200f16ca5da4e3c8dfdcc0a0
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
AlekSIS/libs/django-yarnpkg
Select target project
No results found
67c54abb79d50ef5200f16ca5da4e3c8dfdcc0a0
Select Git revision
Branches
master
renovate/python-3.x
Tags
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
Swap
Target
AlekSIS/libs/django-yarnpkg
Select target project
AlekSIS/libs/django-yarnpkg
edward/django-yarnpkg
detiste-guest/django-yarnpkg
3 results
e1f322680dddcc56434cd8ba6c0a9963742f7563
Select Git revision
Branches
master
renovate/python-3.x
Tags
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
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (3)
Fix general management command.
· 6e855568
Nik | Klampfradler
authored
3 years ago
Closes
#2
.
6e855568
Update changelog
· 286c7e83
Nik | Klampfradler
authored
2 years ago
Verified
286c7e83
Bump version
· 67c54abb
Nik | Klampfradler
authored
2 years ago
Verified
67c54abb
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CHANGELOG.rst
+11
-0
11 additions, 0 deletions
CHANGELOG.rst
django_yarnpkg/management/commands/yarn.py
+1
-1
1 addition, 1 deletion
django_yarnpkg/management/commands/yarn.py
setup.py
+1
-1
1 addition, 1 deletion
setup.py
with
13 additions
and
2 deletions
CHANGELOG.rst
View file @
67c54abb
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)
Version 6.0 (2019-12-07)
=====================================================
=====================================================
...
...
This diff is collapsed.
Click to expand it.
django_yarnpkg/management/commands/yarn.py
View file @
67c54abb
...
@@ -16,7 +16,7 @@ class Command(BaseYarnCommand):
...
@@ -16,7 +16,7 @@ class Command(BaseYarnCommand):
if
self
.
_is_single_command
(
'
install
'
,
args
):
if
self
.
_is_single_command
(
'
install
'
,
args
):
self
.
_install
([])
self
.
_install
([])
else
:
else
:
yarn_adapter
.
call_
bower
(
args
)
yarn_adapter
.
call_
yarn
(
args
)
def
_is_single_command
(
self
,
name
,
args
):
def
_is_single_command
(
self
,
name
,
args
):
return
len
(
args
)
==
1
and
args
[
0
]
==
name
return
len
(
args
)
==
1
and
args
[
0
]
==
name
This diff is collapsed.
Click to expand it.
setup.py
View file @
67c54abb
from
setuptools
import
setup
,
find_packages
from
setuptools
import
setup
,
find_packages
version
=
'
6.0.
1
'
version
=
'
6.0.
2
'
setup
(
setup
(
name
=
'
django-yarnpkg
'
,
name
=
'
django-yarnpkg
'
,
...
...
This diff is collapsed.
Click to expand it.