Skip to content
#

Package manager

A package manager is a set of tools that automates and manages computer software. They deal with packages, or collections, of bundled files. Package managers make it easy to install, upgrade, or remove software for a computer's operating system.

Here are 1,261 public repositories matching this topic...

sabrinaluo
sabrinaluo commented Jun 5, 2019

Do you want to request a feature or report a bug?
feature request

What is the current behavior?
Currently yarn why won't indicate any package info in the resolutions field

If the current behavior is a bug, please provide the steps to reproduce.

  1. install a package with any version, e.g "pkg": "^1.0.0"
  2. add resolutions field in package.json, pkg: "1.0.0"
  3. upd
brew
abn
abn commented Mar 30, 2021

This is a great issue to work on if you are new to the Poetry code base and want to start contributing. Over the years the poetry code base has added various fixes that catered to now unsupported versions of python. With the release of 1.2, we will drop support for all Python versions prior to 3.6. With this we want to clean up the code base of any such workarounds we did to support backwards

dariusarnold
dariusarnold commented Aug 6, 2021

My proposal is to add the method version() to tools.Git. Calling this method would return the Major.Minor.Patch of the found git executable (maybe as a named tuple). These can be used to customize the git commands which are used. As an example, partial cloning (cloning only some files/directories from a repo to save time) is available since Git 2.19.0. If the executable is new enough, partial clon

cli
isaacs
isaacs commented Feb 12, 2021

Current Behavior:

$ npm find-dupes

added 24 packages, removed 1 package, and changed 1 package in 10s

59 packages are looking for funding
  run `npm fund` for details

Expected Behavior:

$ npx npm@6 find-dupes
move	source-map	0.5.7	node_modules/@babel/core/node_modules/source-map		node_modules/tap/node_modules/@babel/core/node_modules/source-map
move	@babel/
berry
KishanBagaria
KishanBagaria commented Aug 26, 2021

Self-service

  • I'd be willing to implement a fix

Describe the bug

Yarn berry doesn't download Git LFS files for packages. Yarn v1 does.

To reproduce

yarn v1 works:

mkdir yarn1; cd yarn1
yarn add https://github.com/signalapp/better-sqlite3
ls -lah node_modules/better-sqlite3/deps/sqlite3.tar.gz
# -rw-r--r--  1 kishan  staff    18M Apr 28 00:18 node_modul
athens
arschles
arschles commented Nov 13, 2019

Is your feature request related to a problem? Please describe.

Not related to a problem

Describe the solution you'd like

We opened #808 to discuss how we might use GitHub actions. At the time, this repo didn't have actions enabled. Now that it does, we should try them out for some of the things in that thread.

_Edit from @arschles - we have focused this issue to just the twitte

coilysiren
coilysiren commented Dec 28, 2016

ref: rubygems/bundler#5263

If a gem is specified via source::path and source::gemspec both with :path => '.', bundler will print

There was an error parsing `Gemfile`: You cannot specify the same gem twice coming from different sources.
You specified that $GEM_NAME (>= 0) should come from source at `.` and source at `.`
. Bundler cannot continue.
osch
osch commented Feb 3, 2020

Could it be possible to have a warning message when installing a rock that contains a module that is already provided by another rock? Or is there already an option for this and I didn't find it?

At least with Luarocks version 3.2.1 I verified that there are no warnings for this case.

However it seems that Luarocks is aware of the collision and installs the new module under another name and

Wikipedia
Wikipedia