@gitzone/tsbundle
TypeScript icon, indicating that this package has built-in type declarations

2.0.8 • Public • Published

@gitzone/tsbundle

a bundler using rollup for painless bundling of web projects

Availabililty and Links

Status for master

Status Category Status Badge
GitLab Pipelines pipeline status
GitLab Pipline Test Coverage coverage report
npm npm downloads per month
Snyk Known Vulnerabilities
TypeScript Support TypeScript
node Support node
Code Style Code Style
PackagePhobia (total standalone install weight) PackagePhobia
PackagePhobia (package size on registry) PackagePhobia
BundlePhobia (total size when bundled) BundlePhobia
Platform support Supports Windows 10 Supports Mac OS X

Usage

Use TypeScript for best in class intellisense.

tsbundle will bundle modern JavaScript websites in an Google Bot conformant way so things like AdSense do work.

tsbundle supports two modes of usage: CLI and API usage.

CLI

# Note: This is code that belongs into your terminal ;)
# Install the tool for cli usage

# Globally
npm install -g @gitzone/tsbundle

# Locally for use in your pacakge.json
npm install --save-dev @gitzone/tsbundle

# 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

You are using TypeScript, aren't you? Most of the stuff is apparent from the IDE intellisense.

import { TsBundle } from '@gitozne/tsbundle';

const myTsBundleInstance = new TsBundle();

const run = async () => {
  await myTsBundleInstance.buildTest('./from/my.ts', './to/mybundle.js');
  // OR
  await myTsBundleInstance.buildProduction('./from/my.ts', './to/mybundle.js');
};

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 or contribute monthly. :)

For further information read the linked docs at the top of this readme.

MIT licensed | © Lossless GmbH | By using this npm module you agree to our privacy policy

repo-footer

Readme

Keywords

none

Package Sidebar

Install

npm i @gitzone/tsbundle

Weekly Downloads

29

Version

2.0.8

License

MIT

Unpacked Size

41.6 kB

Total Files

42

Last publish

Collaborators

  • lossless