最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - npm install from a git repo leaves a pretty blank package? - Stack Overflow

programmeradmin2浏览0评论

I am using working from this github issue and it says to use a temporary github fork until a pull request is merged in another repo....cool.

I try to add the github fork to my project dependencies by doing this...

    "reactstrap": "git+.git",

in the package.json file and when I do a npm install everything goes according to plan, but then I get failures with my project not being able to find reactstrap...

When I go to inspect my node_modules I can see that the reactrap directory is pretty empty with only the LICENSE, README and package.json files...

What am I missing here?

I am using working from this github issue and it says to use a temporary github fork until a pull request is merged in another repo....cool.

I try to add the github fork to my project dependencies by doing this...

    "reactstrap": "git+https://github./jameswomack/reactstrap.git",

in the package.json file and when I do a npm install everything goes according to plan, but then I get failures with my project not being able to find reactstrap...

When I go to inspect my node_modules I can see that the reactrap directory is pretty empty with only the LICENSE, README and package.json files...

What am I missing here?

Share Improve this question asked Oct 7, 2017 at 11:47 JoffJoff 12.2k20 gold badges65 silver badges113 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 13

The package.json file of the repository contains these lines:

"files": [
    "LICENSE",
    "README.md",
    "CHANGELOG.md",
    "lib",
    "dist"
]

This is the list of files and directories to include in the npm package. As you can see, the actual JavaScript files will be located in the lib and dist directories.

The problem is that these directories are not checked into the Git repository, but created by a build, when you run npm run build.

A workaround that I would try: run the build, mit and push the generated files to your fork on GitHub. After that, installing the dependency the way you do it should give you the desired result.

However, if your goal is simply to test if your changes on a local fork of reactstrap work by including it as a dependency of a demo project, there is a better way: use npm link.

It works like this:

  • in the root of your local clone of your reactstrap fork, execute the mand npm link
  • in the root of your demo project that uses reactstrap as dependency, execute the mand npm link reactstrap

Any changes you then do to your reactstrap fork will be available in your demo project immediately.

发布评论

评论列表(0)

  1. 暂无评论