Skip to content

Commit 67cc4a6

Browse files
committed
doc updates, remove cssmin
1 parent 3cccaee commit 67cc4a6

File tree

3 files changed

+1
-4
lines changed

3 files changed

+1
-4
lines changed

HISTORY.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
## Release History
2+
* 2016-09-07 v3.0.0 Breaking: Removed `cssmin` option; Feat: New `linkTransform` option which can replace cssmin, and is more flexible
23
* 2016-03-30 v2.0.0 Feat: SVG `use` inlining; Feat: requestTransform; Fix: default gzip handling
34
* 2015-11-03 v1.2.1 Fix: HTTP status codes undefined
45
* 2015-10-23 v1.2.0 Enhancement: Strip value of data-inline(-ignore) attributes

README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,6 @@ Describes the path relationship between where web-resource-inliner is running an
6464
#### `rebaseRelativeTo`, string, default empty string
6565
Describes the path relationship between CSS content and the context it will be loaded in. For example, when a CSS file contains `url(some-file.png)` and the file is moved from a location in a folder like `/css` to `/` then the path to the image needs to be changed to `url(css/some-file.png)`. In this case, `rebaseRelativeTo` would be `css`. You probably don't want to set this when you are using `html()`.
6666

67-
#### `cssmin`, Boolean, default `false`
68-
If cssmin is assigned `true`, CSS will be minified before inlined.
69-
7067
#### `strict`, Boolean, default `false`
7168
When strict is `true`, a missing resource will cause the inliner to halt and return an error in the callback. The default behavior is to log a warning to the console and continue inlining with the available resources, which is more similar to how a web page behaves.
7269

src/util.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ util.defaults = {
1616
svgs: 8,
1717
scripts: true,
1818
links: true,
19-
cssmin: false,
2019
strict: false,
2120
relativeTo: "",
2221
rebaseRelativeTo: "",

0 commit comments

Comments
 (0)