tsbundle/readme.md

79 lines
3.8 KiB
Markdown
Raw Permalink Normal View History

2023-08-26 13:08:23 +00:00
# @git.zone/tsbundle
2019-04-20 17:59:33 +00:00
a bundler using rollup for painless bundling of web projects
## Availabililty and Links
2023-08-26 13:08:23 +00:00
* [npmjs.org (npm package)](https://www.npmjs.com/package/@git.zone/tsbundle)
2019-04-20 17:59:33 +00:00
* [gitlab.com (source)](https://gitlab.com/gitzone/tsbundle)
* [github.com (source mirror)](https://github.com/gitzone/tsbundle)
* [docs (typedoc)](https://gitzone.gitlab.io/tsbundle/)
## Status for master
2022-03-14 15:32:12 +00:00
Status Category | Status Badge
-- | --
GitLab Pipelines | [![pipeline status](https://gitlab.com/gitzone/tsbundle/badges/master/pipeline.svg)](https://lossless.cloud)
GitLab Pipline Test Coverage | [![coverage report](https://gitlab.com/gitzone/tsbundle/badges/master/coverage.svg)](https://lossless.cloud)
2023-08-26 13:08:23 +00:00
npm | [![npm downloads per month](https://badgen.net/npm/dy/@git.zone/tsbundle)](https://lossless.cloud)
2022-03-14 15:32:12 +00:00
Snyk | [![Known Vulnerabilities](https://badgen.net/snyk/gitzone/tsbundle)](https://lossless.cloud)
TypeScript Support | [![TypeScript](https://badgen.net/badge/TypeScript/>=%203.x/blue?icon=typescript)](https://lossless.cloud)
node Support | [![node](https://img.shields.io/badge/node->=%2010.x.x-blue.svg)](https://nodejs.org/dist/latest-v10.x/docs/api/)
Code Style | [![Code Style](https://badgen.net/badge/style/prettier/purple)](https://lossless.cloud)
2023-08-26 13:08:23 +00:00
PackagePhobia (total standalone install weight) | [![PackagePhobia](https://badgen.net/packagephobia/install/@git.zone/tsbundle)](https://lossless.cloud)
PackagePhobia (package size on registry) | [![PackagePhobia](https://badgen.net/packagephobia/publish/@git.zone/tsbundle)](https://lossless.cloud)
BundlePhobia (total size when bundled) | [![BundlePhobia](https://badgen.net/bundlephobia/minzip/@git.zone/tsbundle)](https://lossless.cloud)
2022-03-14 15:32:12 +00:00
Platform support | [![Supports Windows 10](https://badgen.net/badge/supports%20Windows%2010/yes/green?icon=windows)](https://lossless.cloud) [![Supports Mac OS X](https://badgen.net/badge/supports%20Mac%20OS%20X/yes/green?icon=apple)](https://lossless.cloud)
2019-04-20 17:59:33 +00:00
## Usage
2019-04-30 07:44:46 +00:00
2019-04-29 20:29:56 +00:00
Use TypeScript for best in class intellisense.
2019-04-20 17:59:33 +00:00
2019-04-29 20:29:56 +00:00
tsbundle will bundle modern JavaScript websites in an Google Bot conformant way so things like AdSense do work.
2019-04-20 17:59:33 +00:00
2020-05-05 12:29:23 +00:00
tsbundle supports two modes of usage: CLI and API usage.
### CLI
```shell
# Note: This is code that belongs into your terminal ;)
# Install the tool for cli usage
# Globally
2023-08-26 13:08:23 +00:00
npm install -g @git.zone/tsbundle
2020-05-05 12:29:23 +00:00
# Locally for use in your pacakge.json
2023-08-26 13:08:23 +00:00
npm install --save-dev @git.zone/tsbundle
2020-05-05 12:29:23 +00:00
# then use it
tsbundle --from="./ts/index.ts" --to="dist/bundle.js"
## note you can call tsbundle without arguments. Default values are --from="./ts_web/index.ts" --to="dist_bundle/bundle.js"
## You can use --production to enable minification using terser
```
## API
2022-03-14 15:32:12 +00:00
2020-05-05 12:29:23 +00:00
You are using TypeScript, aren't you? Most of the stuff is apparent from the IDE intellisense.
```typescript
import { TsBundle } from '@gitozne/tsbundle';
const myTsBundleInstance = new TsBundle();
2019-04-30 07:44:46 +00:00
2020-05-05 12:29:23 +00:00
const run = async () => {
2022-03-14 15:32:12 +00:00
await myTsBundleInstance.buildTest('./from/my.ts', './to/mybundle.js');
2020-05-05 12:29:23 +00:00
// OR
2022-03-14 15:32:12 +00:00
await myTsBundleInstance.buildProduction('./from/my.ts', './to/mybundle.js');
};
2020-05-05 12:29:23 +00:00
```
2019-04-30 07:44:46 +00:00
2020-03-14 22:41:25 +00:00
## Contribution
We are always happy for code contributions. If you are not the code contributing type that is ok. Still, maintaining Open Source repositories takes considerable time and thought. If you like the quality of what we do and our modules are useful to you we would appreciate a little monthly contribution: You can [contribute one time](https://lossless.link/contribute-onetime) or [contribute monthly](https://lossless.link/contribute). :)
2019-04-30 07:44:46 +00:00
For further information read the linked docs at the top of this readme.
2019-04-20 17:59:33 +00:00
> MIT licensed | **©** [Lossless GmbH](https://lossless.gmbh)
2019-08-25 14:35:22 +00:00
| By using this npm module you agree to our [privacy policy](https://lossless.gmbH/privacy)
2019-04-20 17:59:33 +00:00
2019-08-25 14:35:22 +00:00
[![repo-footer](https://lossless.gitlab.io/publicrelations/repofooter.svg)](https://maintainedby.lossless.com)