Go to file
2020-05-25 17:01:43 +00:00
.vscode fix(core): update 2020-03-14 22:41:25 +00:00
test fix(core): update 2019-10-12 15:55:37 +02:00
ts fix(core): update 2020-05-25 17:01:43 +00:00
.gitignore fix(core): update 2020-03-14 22:41:25 +00:00
.gitlab-ci.yml fix(core): update 2020-03-18 16:39:39 +00:00
.snyk fix(core): update 2019-07-17 12:01:02 +02:00
cli.js fix(core): update 2020-03-20 05:34:05 +00:00
cli.ts.js fix(core): update 2019-10-12 15:55:37 +02:00
license fix(core): initial 2019-04-20 19:59:33 +02:00
npmextra.json fix(core): update 2020-03-14 22:41:25 +00:00
package-lock.json fix(core): update 2020-05-25 17:01:43 +00:00
package.json fix(core): update 2020-05-25 17:01:43 +00:00
readme.md fix(core): update 2020-05-05 12:29:23 +00:00
rollup.config.js fix(core): update 2019-04-30 12:49:10 +02:00
tslint.json fix(core): initial 2019-04-20 19:59:33 +02:00

@gitzone/tsbundle

a bundler using rollup for painless bundling of web projects

Status for master

pipeline status coverage report npm downloads per month Known Vulnerabilities TypeScript node JavaScript Style Guide

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