npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@knowitsolutions/react-scripts

v3.2.0-3

Published

Configuration and scripts for Create React App.

Downloads

9

Readme

@knowitsolutions/react-scripts

This package is a fork of Create React App (specifically the react-scripts package). It's intended to be used in conjuction with create-react-app like so:

yarn create react-app my-app --scripts-version=@knowitsolutions/react-scripts

# start your app development like you normally would with `create-react-app`
cd my-app
yarn start

The setup of this fork has been modeled after another react-scripts fork: backpack-react-scripts

What is different in our fork?

  • source-map-loader added to webpack configuration.
  • Source maps enabled by default for dependecies.
  • Allow more jest confiuration overrides: setupTestFrameworkScriptFile, testMatch.

Releasing a new version of @knowitsolutions/react-scripts

  1. To publish a new version of @knowitsolutions/react-scripts, run the following command:

    npm run publish prerelease
    • If you want to be extra careful, you can publish a prerelease by running this instead:
    npm run publish --canary
  2. Update the CHANGELOG.md with the new version, taking care to follow the format of previous releases.

Keeping this fork updated

We wish to keep this fork updated with the upstream repo to benefit from the ongoing open source development of create-react-app. To keep this fork up to date, please follow the steps below:

  1. Ensure master is in sync with upstream/master:

    git checkout master
    git remote add upstream [email protected]:facebook/create-react-app.git
    git fetch upstream
    git reset --hard upstream/master
    git push --force-with-lease
  2. Rebase fork on top of a tagged release on master:

    git checkout fork
    git rebase <commit>

    Note: <commit> should be the SHA-1 of the latest upstream release - not just the latest i.e. upstream/master

  3. Pair with someone else to fix any conflicts and cross examine changes in upstream with changes in our fork.

    This is the most time consuming part. Take care to make sure you are not regressing any functionality that we have added in our fork.

  4. Re-name your local, rebased fork branch to something else and push it to origin. This will ensure it runs through CI and you can verify your changes.

    git branch -m <branch>
    git push origin <branch>
  5. Finally, when we are confident that the rebase has been successful, re-name your branch back to fork and push it to origin:

    git branch -m fork
    git push --force-with-lease