Skip to content

Tags: code4ward/text-wrapper

Tags

v2.0.2

Toggle v2.0.2's commit message
fix(devDependencies): Vulnerabilities were fixed (except one in typedoc)

v2.0.1

Toggle v2.0.1's commit message
build(npm): `prepublishOnly` script was updated to do tests before pu…

…blish

typedoc-2.0.1

Toggle typedoc-2.0.1's commit message
chore(package.json): Some little improvements and corrections. Especi…

…ally puppeteer minor-version...

Some little improvements and corrections. Especially puppeteer minor-version was restricted to avoid
possible chromium-version incompatibilities (note that `PUPPETEER_SKIP_CHROMIUM_DOWNLOAD` usually
has been set).

v2.0.0

Toggle v2.0.0's commit message
fix(debug): Instance-property `debug` was removed and replaced with a…

… static and global one

1. Imported `debug` (from 'debug') was exported totally to be fully accessible from the API.
    Also, Its mode was changed to be static, correctly. Instance-mode was a mistake.
2. debug-mode was disabled by default (`debug.disable()`). Even in `DEBUG` env-var presence.
    The consumer must be enabled it when needed.
3. "<@MODULE_NAME@>:" prefix was added to debuggers' namespaces.
    In this library it will replaced with "text-wrapper:" at build-time. See 'rollup-plugin-replace'

BREAKING CHANGE:
    1. Instance-property `debug` was removed and replaced with a static and global one
    2. debug-mode was disabled by default (`debug.disable()`). Even in `DEBUG` env-var presence.
    3. "<@MODULE_NAME@>:" prefix was added to debuggers' namespaces.

typedoc-test

Toggle typedoc-test's commit message
docs(typedoc): TypeDoc output reverted back here (docs/)

v1.1.1

Toggle v1.1.1's commit message
docs(README.md): By mistake removed badges, was reverted

v1.1.0

Toggle v1.1.0's commit message
feat(TextWrapper.ts): `wrapper()` function (static-method) was added …

…to do the job easier

1. `wrapper` function (static-method) was added.
2. documentation was changed based on this new feature. See "Basic Usage" (of README) especially.
3. new test was added to cover this new function.
Other changes:
"supports-color" was upgraded: v6.1.0 => v7.0.0

v1.0.0

Toggle v1.0.0's commit message
docs(README): "Installation", "Basic Usage" and "Sample Input / Outpu…

…t" were added to README.md file

v0.6.0

Toggle v0.6.0's commit message
feat(build): The format and layout of built artifacts and deployment …

…plans were changed

This change actually occurs in previous commits.

v0.5.0

Toggle v0.5.0's commit message
feat(vLen calculation): Ability to calculate `visualLen` of lines whe…

…n '\t' in the middle or the end

The length of TAB character is not fixed and depends on its offset (visualOffset). So the related
parts of the source was edited to implementing this feature correctly. The most important edited
part is `getVisualLength()` method.