https://github.com/marco-eckstein/js-utils
JavaScript utilities implemented in Typescript
https://github.com/marco-eckstein/js-utils
Last synced: 8 months ago
JSON representation
JavaScript utilities implemented in Typescript
- Host: GitHub
- URL: https://github.com/marco-eckstein/js-utils
- Owner: marco-eckstein
- License: mit
- Created: 2017-10-01T15:29:43.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2021-06-08T00:43:09.000Z (about 5 years ago)
- Last Synced: 2025-08-26T02:55:23.580Z (10 months ago)
- Language: TypeScript
- Homepage:
- Size: 246 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# js-utils
[](
https://badge.fury.io/js/%40marco-eckstein%2Fjs-utils
)
[](
https://npm-stat.com/charts.html?package=%40marco-eckstein%2Fjs-utils&from=2018-05-02
)
[](
https://conventionalcommits.org
)
JavaScript utilities implemented in Typescript
## Development
No global modules other than `npm` are necessary.
- Run `npm install` once after checking out.
- Then, run either `npm test` for a single full build cycle (clean, compile, lint, test),
or `npm start` for running the full cycle initially and then watch for file changes which will
trigger appropriate parts of the build cycle (compile, lint, test). The watch mode is not bulletproof:
It works for file updates, but you may get problems if you rename or delete files.
- Before bumping the version, make sure the copyright year range in the license file is up to date.
- Run `npm run standard-version` instead of `npm version` to bump the version.
- Publish with `npm publish --access public`. This will run the full build cycle before publishing.