Skip to content
#

dependencies

A package manager or package management system is a collection of software tools that automate the process of installing, upgrading, configuring, or removing computer programs for a computer's operating system in a consistent manner.

Here are 612 public repositories matching this topic...

luisnaranjo733
luisnaranjo733 commented Oct 19, 2018

I'm testing out madge on my TS RN codebase, and I'm surprised to see that it just magically works without specifying a tsconfig.

For example
yarn madge --circular --extensions ts,tsx ./

Although this is cool and exciting, it gives me pause because the documentation doesn't explain how this works. I read the source and followed the path through a series of external npm dependencies. Af

christianbundy
christianbundy commented Jan 11, 2020

Background: I have a pull request into a repository where the npm module isn't up-to-date with master, and I'd like to test out my branch in a module that depends on it through a bunch of different deep dependencies. It seems like patch-package would be a great solution for this.

Problem: When I append .patch to my GitHub URL it gives me a patch, but when I pass it to patch -p1 it

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

yang
yang commented Feb 21, 2019

Is my understanding correct that running just the yalc commands as documented won't address various issues with yarn link, such as not installing transitive dependencies and not installing new/renamed bin scripts? (It's reasons like these that were our main motivation for looking into yalc in the first place.)

I spent some time experimenting, and it seems that running `rm -rf node_module

dephell
AyanSinhaMahapatra
AyanSinhaMahapatra commented Oct 12, 2019

Description

Running the following Command:

./scancode -clp --json-pp sample_filter_clues.json samples --filter-clues

Gives the Error:

ERROR: failed to run post-scan plugin: filter-clues:
Traceback (most recent call last):
  File "/home/ayansm/Desktop/GSoD/scancode-toolkit-versions/scancode-toolkit-3.1.1/src/scancode/cli.py", line 1033, in run_codebase_plugins
    plugin.p
discdiver
discdiver commented May 29, 2019

Using SourceRank via cli returns dict of SourceRank attributes instead of a single int, as shown in the API docs. Docs need updated.

SourceRank API docs at https://libraries.io/api

Project SourceRank
Get breakdown of SourceRank score for a given project.

GET https://libraries.io/api/:platform/:name/sourcerank?api_key=abc123

Example: `https://libraries.io/api/NPM/base62/sourcerank?a

mlinksva
mlinksva commented Oct 1, 2018

Currently licensed includes files matching:

LEGAL_FILES = /\A(AUTHORS|COPYING|NOTICE|LEGAL)(?:\..*)?\z/i

I think COPYING is superfluous, see #84, but there are some other files (also with any extension) that often include legal notices that would be useful to automatically collect, eg:

  • LICENSES, NOTICES (plural)
  • THIRD-PARTY-LICENSE (variations including 3rd, n
tanthammar
tanthammar commented Jul 19, 2019

Apologies for asking, but I don't understand how any of this works, wandering in a black hole ...

  1. When I launch Time Machine all my projects, vendor and node_modules are still there.
  2. When I run sudo mdfind "com_apple_backup_excludeItem = 'com.apple.backupd' none of the vendor/node_modules, dirs are listed.

I launched the daemon a few days ago and thought that the newer backups would

ort
uszeiss
uszeiss commented Mar 27, 2020

The notice-pre-processor.kts file allows for customisation of the generated notice file, see https://github.com/oss-review-toolkit/ort/blob/master/docs/notice-pre-processor-kts.md.

Not all customisations seem possible, though. I would like to:

  • customize the notice separator
  • get rid of the separator between the different headers
  • include the license name/id before the license text
Edouard-chin
Edouard-chin commented Jan 8, 2019

When writing the Gemfile_next.lock snapshot, we resolve the dependencies remotely https://github.com/Shopify/bootboot/blob/master/lib/bootboot/gemfile_next_auto_sync.rb#L56
this is unnecessary as all the gems should already have been fetched.

Resolving the dependencies locally with Bundler::Definition#resolve_with_cache https://github.com/bundler/bundler/blob/a63a39d738865665f714f179fe42dd

ghilainm
ghilainm commented Oct 5, 2018

The plugin should in addition of reordering dependencies also format them in order to have consistent look and feel.

Example:

    implementation 'org.apache.commons:commons-lang3:3.7'
    implementation "org.springframework.hateoas:spring-hateoas"
    annotationProcessor("org.projectlombok:lombok:1.18.2")

->

    implementation("org.apache.commons:commons-lang3:3.7")
    imp
m-cat
m-cat commented Dec 1, 2019

Optional dependencies should not be treated as a "dependency" kind, of which there are only three -- regular, build, and dev. "Optional deps" should instead be handled as a boolean flag, which is what cargo does. A dependency can be both a build dependency and optional simultaneously, but currently cargo-deps will erase one of these.

Optional dependencies can be displayed with a dashed line.

webpack-babel-env-deps
AndersDJohnson
AndersDJohnson commented Jan 8, 2018

We don't need to transpile certain babel env plugins that are disabled by the user in their Babel env settings.

We could sniff this from user's Babel config.

Or at least provide an option here to manually override considering certain babel env plugins from consideration for transpiling.

Wikipedia
Wikipedia

Related Topics

package-management
You can’t perform that action at this time.