在npm软件包中使用antd

时间:2019-12-08 05:34:24

标签: reactjs npm antd npm-publish

我正在尝试为Form创建自己的React Wrapper并将其发布到 npm

我用过create-react-library。一切都很好,直到我安装了antd

import React, { Component } from "react";
import { Button } from "antd";
import PropTypes from "prop-types";

class WrappedForm extends Component {
  static propTypes = {
    text: PropTypes.string,
    color: PropTypes.string
  };

  render() {
    const { text, color } = this.props;

    return (
      <React.Fragment>
        <Button>Heloo</Button>
      </React.Fragment>
    );
  }
}

export default WrappedForm;

导入ant design的组件后,出现错误。

Error: Unexpected token

node_modules\antd\package.json (2:9)
1: {
2:   "_from": "antd@^3.26.0",
            ^
3:   "_id": "antd@3.26.0",
4:   "_inBundle": false,

感谢您的帮助。

预先感谢!

0 个答案:

没有答案