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,128 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
naderman
naderman commented Feb 8, 2021

There is currently https://getcomposer.org/doc/06-config.md#preferred-install which explains preferred-install (without really explaining the effect or purpose at all, so not great either). And then install/update document the prefer-source/dist options without explaining how this relates to preferred-install: https://getcomposer.org/doc/03-cli.md#install-i

It's unclear which of the two takes p

CircleOnCircles
CircleOnCircles commented Nov 15, 2020

poetry add git+https://github.com/AGeekInside/fastapi-jinja.git result in exception since it is tires to checkout master branch.

poetry add git+https://github.com/AGeekInside/fastapi-jinja.git

Updating dependencies
Resolving dependencies...

  CalledProcessError

  Command '['git', '--git-dir', 'C:/Users/n2/AppData/Local/Temp/pypoetry-git-fastapi-jinjau3blv69e/.git', '--work-tr
jgsogo
jgsogo commented Feb 26, 2021

When searching for a recipe-revision that doesn't exist, the error message can be improved

conan search zlib/1.2.11@#58dde97face18c9c280e2d6093c45d15 -r conan-center
ERROR: Not found: https://conan.bintray.com/v2/conans/zlib/1.2.11/_/_/revisions/58dde97face18c9c280e2d6093c45d15/files/conanmanifest.txt. [Remote: conan-center]

Searching using recipe-revision for a reference that doe

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

chriskrycho
chriskrycho commented Apr 16, 2020

In a project with a given tool installed locally (in this case, ember-cli)—

  • Expected:

    $ volta list
    
    ⚡️ Currently active tools:
    
        Node: v12.16.2 (current @ /Users/chris/dev/test/foo/package.json)
        Yarn: v1.22.4 (current @ /Users/chris/dev/test/foo/package.json)
        Tool binaries available:
            ember (current @ /Users/chris/dev/test/f
marcandre
marcandre commented Jan 5, 2021
with:
        ruby-version: 3.0.0

Should be using a matrix, even if you only want a single version, as it makes it easier to add versions.
Morevover, I feel that just the current stable ruby version is not the best default. My recommendation would be current and two preceding, but I leave that up to the maintainers.
More importantly, I believe that ruby-head should be there b

Wikipedia
Wikipedia