4.0.4-0 • Published 3 years ago

salesforce-react-scripts v4.0.4-0

Weekly downloads
66
License
MIT
Repository
github
Last release
3 years ago

react-scripts

This package includes scripts and configuration used by Create React App. Please refer to its documentation:

Forked for Salesforce

This is a fork of react-scripts. Along with the base scripts off the official distribution, this includes customizations for Visualforce pages.

Install

npm install -g create-react-app
create-react-app my-react-app --scripts-version salesforce-react-scripts

Configure

Credentials

Update your deployment credentials in .env.local:

  • SF_LOGIN_URL - Login URL
  • SF_USERNAME - Username of deploying user
  • SF_PASSWORD - Password + security token of deploying user

Naming of deployed controller, page, static resource

By default, naming is inferred from the name field in package.json. For example, if the package's name value is my-react-app, the name MyReactApp will be used.

These variables may be configured in your app's .env file.

  • REACT_APP_SF_PREFIX - Defaults to the value as described above.
  • REACT_APP_SF_CONTROLLER - The page's controller name. An empty class will be deployed if it does not already exist. This value is used in public/visualforce.html and may be used in your code to reference @RemoteAction methods, eg. window[process.env.REACT_APP_SF_CONTROLLER].myMethod. Defaults to ${REACT_APP_SF_PREFIX}Controller
  • REACT_APP_SF_PAGE - Name of the generated VisualForce page. The page is generated using public/visualforce.html. Defaults to the value of REACT_APP_SF_PREFIX.
  • REACT_APP_SF_STATIC_RESOURCE - Name of the static resource containing containing the contents of /build. Defaults to REACT_APP_SF_PREFIX.

Deploy

yarn build && yarn deploy

The deploy script will:

  1. Bundle the build directory and deploy it as a static resource (eg MyReactApp.resource),
  2. Create a blank Apex controller (eg MyReactAppController) if one does not exist,
  3. Deploy a Visualforce page (eg MyReactApp.page) using the template at public/visualforce.html

Service Workers

Service workers, such as the one included in Create React App, are not currently supported.

Configuration & Plugin Support (unofficial)

This is an unofficial fork that extends Create React App with an interface for plugins and custom config.

If a cra.config.js plugin doesn't exist, there's no difference than if you were using the official package.

Configuration

An ES5 module exported by cra.config.js at the app's root is used for configuration. Each property is optional.

PropertyTypeDescription
pluginsarrayplugin references or names. default: []
applyfunctionwebpack config. default: identity function
babelfunctionbabel config. default: identity function

Example

module.exports = {
  // Load plugins by name and/or by reference. Loading plugins by name is for
  // convenience, eg. `'css-modules'` is the same as `require('react-scripts-plugin-css-modules')`
  plugins: ['no-minify', require('./my-internal-plugin')],

  // Webpack configuration
  apply: (config, { env, paths }) => {
    return config;
  },

  // Babel configuration
  babel: (config, { env, paths }) => {
    return config;
  },
};

Plugins

A plugin is simply an exported custom config without the plugins property.

Available Plugins

4.0.4-0

3 years ago

3.4.2-1

3 years ago

3.4.2-0

4 years ago

3.3.1-0

4 years ago

3.1.2-0

5 years ago

3.0.2-0

5 years ago

2.1.9-0

5 years ago

2.1.6-0

5 years ago

2.1.4-2

5 years ago

2.1.4-1

5 years ago

2.1.4-0

5 years ago

2.1.2-0

5 years ago

1.1.5-0

6 years ago

1.1.2-0

6 years ago

1.1.0

6 years ago

1.0.18-0

6 years ago

1.0.17

7 years ago

1.0.15-1

7 years ago

1.0.14-1

7 years ago

1.0.13-4

7 years ago

1.0.13-3

7 years ago

1.0.13-2

7 years ago

1.0.13-1

7 years ago

1.0.12-4

7 years ago

1.0.12-3

7 years ago

1.0.12-2

7 years ago

1.0.12-1

7 years ago

1.0.11-2

7 years ago

1.0.11-1

7 years ago

1.0.8-2

7 years ago

1.0.8-1

7 years ago

1.0.6-2

7 years ago

1.0.6-1

7 years ago

0.9.6-37

7 years ago

0.9.6-36

7 years ago

0.9.6-35

7 years ago

0.9.6-34

7 years ago

0.9.6-33

7 years ago

0.9.6-32

7 years ago

0.9.6-31

7 years ago