|
1 | | -# core |
2 | | -Main package. |
| 1 | +<!-- <a href="https://www.typescriptlang.org/"> |
| 2 | + <img src="https://creazilla-store.fra1.digitaloceanspaces.com/icons/3257106/file-type-typescript-official-icon-md.png" width="20%" /> |
| 3 | +</a> --> |
| 4 | + |
| 5 | +## typescript-package/core |
| 6 | + |
| 7 | +Core package. |
| 8 | + |
| 9 | +<!-- npm badge --> |
| 10 | +[![npm version][typescript-package-npm-badge-svg]][typescript-package-npm-badge] |
| 11 | +[![GitHub issues][typescript-package-badge-issues]][typescript-package-issues] |
| 12 | +[![GitHub license][typescript-package-badge-license]][typescript-package-license] |
| 13 | + |
| 14 | +<br> |
| 15 | + |
| 16 | +## Table of contents |
| 17 | + |
| 18 | +* [Installation](#installation) |
| 19 | +* [Api](#api) |
| 20 | +* [Git](#git) |
| 21 | + * [Commit](#commit) |
| 22 | + * [Versioning](#versioning) |
| 23 | +* [License](#license) |
| 24 | + |
| 25 | +## Installation |
| 26 | + |
| 27 | +```bash |
| 28 | +npm install @typescript-package/core |
| 29 | +``` |
| 30 | + |
| 31 | +## Api |
| 32 | + |
| 33 | +```typescript |
| 34 | +import { |
| 35 | + resultCallback, |
| 36 | + typeOf |
| 37 | +} from '@typescript-package/core'; |
| 38 | +``` |
| 39 | + |
| 40 | +## GIT |
| 41 | + |
| 42 | +### Commit |
| 43 | + |
| 44 | +* [AngularJS Git Commit Message Conventions][git-commit-angular] |
| 45 | +* [Karma Git Commit Msg][git-commit-karma] |
| 46 | +* [Conventional Commits][git-commit-conventional] |
| 47 | + |
| 48 | +### Versioning |
| 49 | + |
| 50 | +[Semantic Versioning 2.0.0][git-semver] |
| 51 | + |
| 52 | +**Given a version number MAJOR.MINOR.PATCH, increment the:** |
| 53 | + |
| 54 | +* MAJOR version when you make incompatible API changes, |
| 55 | +* MINOR version when you add functionality in a backwards-compatible manner, and |
| 56 | +* PATCH version when you make backwards-compatible bug fixes. |
| 57 | + |
| 58 | +Additional labels for pre-release and build metadata are available as extensions to the MAJOR.MINOR.PATCH format. |
| 59 | + |
| 60 | +**FAQ** |
| 61 | +How should I deal with revisions in the 0.y.z initial development phase? |
| 62 | + |
| 63 | +> The simplest thing to do is start your initial development release at 0.1.0 and then increment the minor version for each subsequent release. |
| 64 | +
|
| 65 | +How do I know when to release 1.0.0? |
| 66 | + |
| 67 | +> If your software is being used in production, it should probably already be 1.0.0. If you have a stable API on which users have come to depend, you should be 1.0.0. If you’re worrying a lot about backwards compatibility, you should probably already be 1.0.0. |
| 68 | +
|
| 69 | +## License |
| 70 | + |
| 71 | +MIT © angular-package ([license][typescript-package-license]) |
| 72 | + |
| 73 | +<!-- This package: typescript-package --> |
| 74 | + <!-- GitHub: badges --> |
| 75 | + [typescript-package-badge-issues]: https://img.shields.io/github/issues/typescript-package/core |
| 76 | + [typescript-package-badge-forks]: https://img.shields.io/github/forks/typescript-package/core |
| 77 | + [typescript-package-badge-stars]: https://img.shields.io/github/stars/typescript-package/core |
| 78 | + [typescript-package-badge-license]: https://img.shields.io/github/license/typescript-package/core |
| 79 | + <!-- GitHub: badges links --> |
| 80 | + [typescript-package-issues]: https://github.com/typescript-package/core/issues |
| 81 | + [typescript-package-forks]: https://github.com/typescript-package/core/network |
| 82 | + [typescript-package-license]: https://github.com/typescript-package/core/blob/master/LICENSE |
| 83 | + [typescript-package-stars]: https://github.com/typescript-package/core/stargazers |
| 84 | +<!-- This package --> |
| 85 | + |
| 86 | +<!-- Package: typescript-package --> |
| 87 | + <!-- npm --> |
| 88 | + [typescript-package-npm-badge-svg]: https://badge.fury.io/js/%40typescript-package%2Fcore.svg |
| 89 | + [typescript-package-npm-badge]: https://badge.fury.io/js/%40typescript-package%2Fcore |
| 90 | + |
| 91 | +<!-- GIT --> |
| 92 | +[git-semver]: http://semver.org/ |
| 93 | + |
| 94 | +<!-- GIT: commit --> |
| 95 | +[git-commit-angular]: https://gist.github.com/stephenparish/9941e89d80e2bc58a153 |
| 96 | +[git-commit-karma]: http://karma-runner.github.io/0.10/dev/git-commit-msg.html |
| 97 | +[git-commit-conventional]: https://www.conventionalcommits.org/en/v1.0.0/ |
0 commit comments