项目作者: alauda

项目描述 :
Internal Angular UI framework for Alauda Frontend Team.
高级语言: TypeScript
项目地址: git://github.com/alauda/alauda-ui.git
创建时间: 2020-04-09T02:45:20Z
项目社区:https://github.com/alauda/alauda-ui

开源协议:MIT License

下载


Alauda UI

Internal Angular UI framework for Alauda Frontend Team.

TOC

Online Demo

Storybook Demo

Getting Started

Install

  1. # npm
  2. npm i @alauda/ui
  3. # yarn
  4. yarn add @alauda/ui

and also need to confirm the peer dependencies have been installed

  1. yarn add dayjs @angular/cdk

Project Config

  1. // tsconfig.json
  2. {
  3. "compilerOptions": {
  4. "allowSyntheticDefaultImports": true,
  5. "skipLibCheck": true,
  6. ...
  7. },
  8. ...
  9. }

Usage

  1. import { ButtonModule } from '@alauda/ui';
  2. @NgModule({
  3. imports: [ButtonModule],
  4. })
  5. export class AppModule {}

Development

  1. git clone https://github.com/alauda/alauda-ui.git
  2. cd alauda-ui
  3. yarn install
  4. yarn start

开发环境基于 Storybook 运行,查看 文档

Test

  1. yarn test

or

  1. yarn test:watch

Build Storybook

  1. yarn storybook:build

Build Library

  1. yarn build

Incremental Builds

Develop and debug UI component libraries quickly and efficiently by incremental builds

Parameter

  1. yarn build:watch

Also can copy a dist to another project to debug

  1. yarn build:watch <project_path>

In this way, after every incremental build completed, dist will be copied to node_modules which in specified project

Config File

In order to incremental build dist to your project directly instead of adding parameter to specify project path every time, can use your own ng-package.json by

  1. npm run debug

Edit you own build config by adding a new file called ng-package.debug.json, like

  1. // ng-package.debug.json
  2. {
  3. "$schema": "./node_modules/ng-packagr/ng-package.schema.json",
  4. "dest": "/home/alauda/projects/<target_project_path>/node_modules/@alauda/ui",
  5. "lib": {
  6. "entryFile": "./src/index.ts"
  7. }
  8. }

Read More

LICENCE

MIT © Alauda