Socket
Socket
Sign inDemoInstall

@findplay/findplay-react-scripts

Package Overview
Dependencies
56
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @findplay/findplay-react-scripts

Fork of facebookincubator/create-react-app@3.1.1 with some additional features.


Version published
Weekly downloads
11
Maintainers
1
Created
Weekly downloads
 

Readme

Source

findplay-scripts

This is a fork of the react-scripts package from the facebook/create-react-app monorepo. You can refer to its documentation:

  • Getting Started – How to create a new app.
  • User Guide – How to develop apps bootstrapped with Create React App.

This package is published as @findplay/findplay-react-scripts in NPM.

See the description field in package.json to see which version of react-scripts this fork is built from.

Differences to react-scripts

Development

Setup

To update the fork to use a new version of the upstream repository:

  1. If you haven't already, configure the upstream repository as a remote:

    git remote add upstream https://github.com/facebookincubator/create-react-app
    
  2. Sync the fork to a branch, making sure you merge from a specific version/tag that you want to base your changes on

    git fetch upstream
    git checkout master
    git checkout -b update-from-upstream
    git merge <tag_to_be_merged_here_eg_v1.1.2>
    
  3. Make your changes, test them (see below), make a PR, release

Making changes and testing

To test your local changes, link the local repository to the application:

  1. In the create-react-app/packages/react-scripts directory, install dependencies and make a link of the package:

    yarn install # ignore the yarn.lock file
    yarn link
    

    NOTE: if other packages have changed too, you might need to run yarn install # ignore the yarn.lock file on the root folder too.

  2. In the application remove the old sharetribe-scripts package and use the linked version (read more):

    yarn remove sharetribe-scripts
    yarn link sharetribe-scripts
    
  3. Now you changes to the fork are usable as a symlicked dependency in the application

Publishing

  1. Make sure you have updated the version also in the description field in package.json. Try to sync the package version with the original package, if possible.

  2. Publish to NPM:

    npm login
    # Check credentials from password manager
    npm publish
    
  3. Tag the commit with released version: sharetribe-scripts@x.x

FAQs

Last updated on 04 Dec 2020

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc