Skip to content

Commit

Permalink
release 1.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
fazouane-marouane committed Aug 20, 2018
1 parent 85c4c93 commit d388a00
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 12 deletions.
24 changes: 14 additions & 10 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,35 +1,39 @@
# Change Log

# 1.2.5

- Prevent invisible element from occupying any space. Thanks to @borodean for PR #6.

## 1.2.4

* Provide a way to easily import the lib in a browserify project.
- Provide a way to easily import the lib in a browserify project.

## 1.2.3

* Provide the lib as a ES2015 module and umd module to please everyone.
* explain more HOWTOs in the README
- Provide the lib as a ES2015 module and umd module to please everyone.
- explain more HOWTOs in the README

## 1.2.2

* Change the build system
- Change the build system

## 1.2.1

* Usage of a custom LRU cache implementation. The old one was way too heavy and needed polyfills.
- Usage of a custom LRU cache implementation. The old one was way too heavy and needed polyfills.

## 1.2.0

* Support for `line-height` with value `normal`
* A new option has been created to explicitely treat `line-height` as a fixed value (not relative to the current `font-size`).
* Refactoring of the code
- Support for `line-height` with value `normal`
- A new option has been created to explicitely treat `line-height` as a fixed value (not relative to the current `font-size`).
- Refactoring of the code

## 1.1.1

* Floor the optimal `font-size` to avoid rounding errors. Thanks to @Robinfr for PR #2.
- Floor the optimal `font-size` to avoid rounding errors. Thanks to @Robinfr for PR #2.

## 1.1.0

* Support `line-height`
- Support `line-height`

## 1.0.0

Expand Down
15 changes: 13 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fancy-textfill",
"version": "1.2.4",
"version": "1.2.5",
"description": "Fast implementation for resizing text to fill its container.",
"main": "es2015/index.js",
"repository": "https://github.com/fazouane-marouane/fancy-textfill",
Expand All @@ -18,7 +18,18 @@
}
}
},
"browserify": { "transform": [["babelify", { "presets": ["es2015"] }]] },
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015"
]
}
]
]
},
"scripts": {
"build": "neutrino build && tsc --outDir es2015",
"test": "NODE_ENV=development intern-runner config=test/intern"
Expand Down

0 comments on commit d388a00

Please sign in to comment.