diff --git a/components/index.tsx b/components/index.tsx index 764eb4bc82..3826570b68 100644 --- a/components/index.tsx +++ b/components/index.tsx @@ -1,10 +1,13 @@ -/* eslint no-console:0 */ // this file is not used if use https://github.com/ant-design/babel-plugin-import -if (process.env.NODE_ENV !== 'production') { - if (typeof console !== 'undefined' && console.warn && typeof window !== 'undefined') { - console.warn(`You are using a whole package of antd, -please use https://www.npmjs.com/package/babel-plugin-import to reduce app bundle size.`); - } +import warning from './_util/warning'; + +const ENV = process.env.NODE_ENV; +if (ENV !== 'production' && ENV !== 'test') { + warning( + false, + 'You are using a whole package of antd,' + + 'please use https://www.npmjs.com/package/babel-plugin-import to reduce app bundle size.' + ); } export { default as Affix } from './affix';