New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

pioner-ant-json-config

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pioner-ant-json-config

JSON configuration for Ant design framework providing customized styling for components

1.0.20
latest
npm
Version published
Weekly downloads
22
633.33%
Maintainers
1
Weekly downloads
 
Created
Source

Description

Distribute ant configurations to multiple product teams.

Install

npm i pioner-ant-json-config
yarn add pioner-ant-json-config

Usage

With craco

https://github.com/FormAPI/craco-antd

craco.config.js:

const CracoAntDesignPlugin = require("craco-antd");
const themeVariables = require('pioner-ant-json-config');

module.exports = {
  plugins: [
    {
      plugin: CracoAntDesignPlugin,
      options: {
        customizeTheme: themeVariables
      }
    }
  ]
};

With react-app-rewire typescript

Follow advanced guide at: https://ant.design/docs/react/use-in-typescript

config-overrides.js:

const tsImportPluginFactory = require('ts-import-plugin')
const { getLoader, injectBabelPlugin } = require("react-app-rewired");
const rewireLess = require('react-app-rewire-less');
const themeVariables = require('pioner-ant-json-config');


module.exports = function override(config, env) {

    const tsLoader = getLoader(
      config.module.rules,
      rule =>
        rule.loader &&
        typeof rule.loader === 'string' &&
        rule.loader.includes('ts-loader')
    );
  
    tsLoader.options = {
      getCustomTransformers: () => ({
        before: [ tsImportPluginFactory({
          libraryDirectory: 'es',
          libraryName: 'antd',
          style: true,
        }) ]
      })
    };

    config = rewireLess.withLoaderOptions({
        javascriptEnabled: true,
        modifyVars: themeVariables,
    })(config, env);
  
    return config;
  }

With CRA eject

Basically follow this: https://medium.com/@GeoffMiller/how-to-customize-ant-design-with-react-webpack-the-missing-guide-c6430f2db10f, just switch themeVariables to correct source in webpack config. Also set javascriptEnabled: true in less-loader.

License

MIT

Keywords

Antd json config

FAQs

Package last updated on 02 Jan 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