Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-app-rewire-antd-starter-config

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-app-rewire-antd-starter-config

A config for using react-app-rewired v2+ with Antd, react-hot-loader, PostCSS and more

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

react-app-rewire-antd-starter-config

An override-config for using react-app-rewired 2.0+ with Antd, react-hot-loader, PostCSS and more

基于 react-app-rewired 2.0+ 的 antd 项目初始化配置

⚠️ This config can NOT fit the version of create-react-app lower than 2.0

Motivation

After rewiring a create-react-app project, we have to ovrride much config to meet our customized needs. Painfully, the same work is repeated every time when you initialize a rewired project. Thus, why not importing a ready-to-go config directly?

Features

  • support react-hot-loader
  • support CSS Modules(enable CSS modules without any special extension)
  • support all features of postcss-preset-env(stage: 0)
  • add support for Antd and Lodash to import components on demand by default
  • add support for using .eslintrc.json file to customize eslint by default
  • add support for using '@' as root directory by default

Preparation

1 ) Install create-react-app 2.x / 3.x

2 ) Install react-app-rewired 2.x

3 ) Install react-app-rewire-hot-loader

yarn add -D react-app-rewire-hot-loader

# If you don't already, you also need
yarn add react-hot-laoder

Install

yarn add -D react-app-rewire-antd-starter-config

Usage

In the config-overrides.js of the root of your project you created for react-app-rewired add this code:

const rewireDefaultConfig = require('react-app-rewire-antd-starter-config')

module.exports = (config, env) => {
  // ...other rewires
  return rewireDefaultConfig(config, env)
}

E.g.

// CSS modules without extension
import * as styles from './example.css'

// import on demand
import { Button, Table } from 'antd'
import { cloneDeep, pickBy } from 'lodash'
// use '@' as root directory
import Example from '@/Components/Example'

const TestComponent = () => (
  <div>
    <span className={styles.title}>Title</span>
    /* ... */
  </div>
)

Enjoy coding!

LICENSE

MIT

FAQs

Package last updated on 18 Dec 2019

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc