Questions tagged [repository]

Refers to the archive within a version control system that holds the complete project history, or a component responsible for exchanging data between an application's business layer and its database.

Which repository is generating this error message?

After discovering an error message, I'm curious to know which repository is responsible for its creation. My intention is to submit a PR to update it. Despite cloning the create-react-app and Babel repositories, I was unable to find any results using VS ...

Storing files in a repository does not impact modifications

My AWS-hosted Next.js front-end application has a backend dependency specified in the package.json like this: "api-client": "git+https://username:<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="fa8a9b89898d95889eb ...

Is there a way to only retrieve a single build/dist file from an NPM installation instead of the entire repository?

Is it possible to solely depend on a single file from a repository? Does the package.json offer any functionality to retrieve a specific distributed build file instead of having to download the entire repository? Alternatively, should the responsibility ...

Accessing a repository in an API endpoint with NextAuth and TypeOrm

I am currently working on a NextJS application that utilizes NextAuth and TypeORM. I am interested in retrieving a specific user or custom entity through an api endpoint, but I am unsure of the best approach to take. I would prefer not to constantly re-ini ...

How come the client directory from my project didn't get sent to GitHub?

When attempting to upload my project to a Github repository for the first time, I noticed that all folders' content was successfully uploaded except for the client folder. Strangely, the icon for this folder looks different compared to the others. Can ...

How do you go about installing the most recent version of a module through Private NPM?

When using a private npm registry, I have noticed that some common commands do not seem to be functioning properly: npm install without specifying a specific @version :: issue npm outdated :: issue npm update :: issue npm view <private-packag ...

Pipenv: Which types of GitHub references are compatible with the "ref" parameter?

When incorporating a GitHub repository using pipenv, what are the possible references that can be utilized for the "ref" parameter? Is it acceptable to use a feature branch? Can a release version be specified? Or is a tagged branch required? For more de ...

Is it possible to update a file in a Bitbucket repository using Azure DevOps release pipeline?

I have a npm source code that requires building and pushing to the npmjs repository. Here are the details of the process: Build pipeline: 1) Fetch sources from Bitbucket repository 2) Retrieve the version number from package.json (e.g., 0.0.3), increase ...