https://github.com/tauhidul0821/uni-table
https://github.com/tauhidul0821/uni-table
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/tauhidul0821/uni-table
- Owner: tauhidul0821
- Created: 2024-07-17T16:35:12.000Z (11 months ago)
- Default Branch: master
- Last Pushed: 2024-07-18T09:24:11.000Z (11 months ago)
- Last Synced: 2025-02-13T00:22:12.650Z (4 months ago)
- Language: TypeScript
- Size: 158 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### for creating library and application for testing
```bash
ng new uni-table --no-standalone --create-application=falseng g library uni-table --no-standalone --prefix=uni
ng g application uni-table-example --no-standalone
```## for build library and test on project and publish on npm package manager
```JSON
"start": "ng serve uni-table-example",
"lib:build": "ng build uni-table",
"uni-table": "ng serve uni-table-example",
"lib:package": "cd dist/uni-table && npm pack",
"lib:publish": "cd dist/uni-table && npm publish --access public"
```# For access user to npm
```bash
npm adduser
```
- login through browser# For Build package:
- go to my-library folder
- update version no.
- run this command for build package :
- ng build my-library --configuration=production# For Publish library
- go to dist folder
- npm publish --access public
-# git tag
```bash
git tag -a v1.0.0 -m "Release version 1.0.0"
or
git tag v1.0.0
git push origin v1.0.0```
# git Release
```bash
Create a Release on GitHub:
Go to the "Releases" section of your repository.
Click "Draft a new release."
Fill in the tag, title, and description.
Publish the release.
```