0.0.2 • Published 3 years ago

g2-mui v0.0.2

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

g2-mui 移动端组件库

启动-本地预览

安装 yarn or npm install

启动

h5: yarn dev:h5; 小程序:yarn dev:weapp

打包

yarn prepublishOnly

目录结构

brew install tree tree -I node_modules > tree.txt

  .
├── README.md
├── babel.config.js
├── config
│   ├── dev.js
│   ├── index.js
│   └── prod.js
├── dist
│   ├── components
│   │   ├── Button
│   │   │   └── Button.d.ts
│   │   └── Input
│   │       └── Input.d.ts
│   ├── index.d.ts
│   ├── index.esm.js
│   ├── index.esm.js.map
│   ├── index.js
│   ├── index.js.map
│   ├── index.umd.js
│   ├── index.umd.js.map
│   └── style
│       ├── components
│       │   ├── button.less
│       │   └── input.less
│       ├── index.less
│       └── theme
├── jest.config.js
├── lib
│   ├── README.md
│   ├── components
│   │   ├── Button
│   │   │   ├── Button.js
│   │   │   └── Button.js.map
│   │   └── Input
│   │       ├── Input.js
│   │       └── Input.js.map
│   ├── index.js
│   ├── index.js.map
│   ├── package.json
│   └── types
│       ├── app.config.d.ts
│       ├── app.d.ts
│       ├── components
│       │   ├── Button
│       │   │   └── Button.d.ts
│       │   └── Input
│       │       └── Input.d.ts
│       └── index.d.ts
├── package-lock.json
├── package.json
├── project.config.json
├── project.tt.json
├── rollup.config.js
├── src
│   ├── app.config.ts
│   ├── app.less
│   ├── app.ts
│   ├── components    组件目录 
│   │   ├── Button
│   │   │   ├── Button.tsx
│   │   │   └── interface.d.ts
│   │   └── Input
│   │       └── Input.tsx
│   ├── index.html
│   ├── index.ts
│   ├── pages     组件开发的demo    ;  开发人员在此处开发项目;进行预览
│   │   └── index
│   │       ├── index.config.ts
│   │       ├── index.less
│   │       └── index.tsx
│   └── style          组件样式
│       ├── components
│       │   ├── button.less
│       │   └── input.less
│       ├── index.less
│       └── mixins
│       └── variables 
├── tsconfig.build.json
├── tsconfig.json
├── tsconfig.rollup.json
├── types
│   ├── app.config.d.ts
│   ├── app.d.ts
│   ├── components
│   │   ├── Button
│   │   │   └── Button.d.ts
│   │   └── Input
│   │       └── Input.d.ts
│   └── index.d.ts
└── yarn.lock