Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/atinc/ngx-tethys
Fast and reliable Tethys Design components for Angular(快速可靠的 Tethys Angular 组件库)
https://github.com/atinc/ngx-tethys
Last synced: 2 months ago
JSON representation
Fast and reliable Tethys Design components for Angular(快速可靠的 Tethys Angular 组件库)
- Host: GitHub
- URL: https://github.com/atinc/ngx-tethys
- Owner: atinc
- License: mit
- Created: 2018-03-11T13:33:33.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2024-11-08T09:23:29.000Z (3 months ago)
- Last Synced: 2024-11-11T05:46:03.535Z (3 months ago)
- Language: TypeScript
- Homepage: https://tethys.pingcode.com
- Size: 73.7 MB
- Stars: 115
- Watchers: 27
- Forks: 34
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
- awesome-angular - ngx-tethys - Fast and reliable Tethys Design components for Angular. (Table of contents / Third Party Components)
- fucking-awesome-angular - ngx-tethys - Fast and reliable Tethys Design components for Angular. (Table of contents / Third Party Components)
README
# ngx-tethys
Fast and reliable Tethys Design components for Angular by Worktile & PingCode FE Team.[![CircleCI](https://circleci.com/gh/atinc/ngx-tethys.svg?style=shield)](https://circleci.com/gh/atinc/ngx-tethys)
[![Coverage Status][coveralls-image]][coveralls-url]
![](https://img.shields.io/badge/Made%20with%20Angular-red?logo=angular)
[![npm (scoped)](https://img.shields.io/npm/v/ngx-tethys?style=flat)](https://www.npmjs.com/package/ngx-tethys)
[![npm](https://img.shields.io/npm/dm/ngx-tethys)](https://www.npmjs.com/package/ngx-tethys)
[![release](https://img.shields.io/github/release-date/atinc/ngx-tethys.svg?style=flat-square
)](https://github.com/atinc/ngx-tethys)
[![docgeni](https://img.shields.io/badge/docs%20by-docgeni-348fe4)](https://github.com/docgeni/docgeni)
[![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettier)[coveralls-image]: https://coveralls.io/repos/github/atinc/ngx-tethys/badge.svg?branch=master
[coveralls-url]: https://coveralls.io/github/atinc/ngx-tethysEnglish | [中文文档](https://github.com/atinc/ngx-tethys/blob/master/README.zh-CN.md)
# ✨ Features
- 📦 Out of the box
- 🚀 Powerful and 60+ rich components
- 🔰 Perfect support for TypeScript, Provide complete type definition
- 🎨 Extract enterprise level interactive language and design style
- 💫 Synchronize with Angular version
- ❤️ High-Quality, Each component has complete testing coverage and documentation, and high quality is equivalent to using it with confidence# 📖 Documentation
- [Getting Started](https://tethys.pingcode.com/docs/getting-started)
- [Theme](https://tethys.pingcode.com/docs/theme)
- [Tethys Design](https://tethys.pingcode.com/design/intro)
- [Tethys CDK](https://tethys.pingcode.com/cdk/behaviors/overview)# Development
> Only for library contributors.
## Clone and installation
```
$ git clone [email protected]:atinc/ngx-tethys.git
$ cd ngx-tethys
$ npm install
$ npm run start
```## Release & Publish
1. Run `npm run release` to release new version, this command will does the following:
- Checkout to `master` and identifies current version and latest tag.
- Prompts for a new version to select.
- Create a release branch as `release-v1.0.0`
- Modifies package metadata (package.json, version.ts) to reflect new release and generate changelog
- Commits those changes to release branch.
- Pushes to the git remote.You can run `npm run release -- [patch|minor|major|2.0.0]` to skip the version selection prompt and increment the version by that keyword or specify version.
1. Submit pull request from release branch to master(don't merge it)
1. GitHub Actions will auto build and publish libRelease the next version requires executing `npm run release-next`
Manually release version requires executing `npm run release-manual`
`npm run release -- --dry-run` or `npm run pub -- --dry-run`
running with the flag `--dry-run` allows you to see what commands would be run, without committing to git or updating files. (意思就是打印一下日志让你看看做了哪些步骤,但是并不会真的执行脚本,你可以放心的执行)
## Notes
1. Don't use `barrel index` (should directly import specify component in module, don't import `index.ts`)
1. Should exports component module in `public-api.ts`