Skip to content

Commit 48bc85d

Browse files
committed
1.1.0
CHANGELOG: - Add ability to transform assets before concat. - Add noconcat option. More information: - Merged #70 which allows support for #64.
1 parent 4382c76 commit 48bc85d

File tree

2 files changed

+12
-5
lines changed

2 files changed

+12
-5
lines changed

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,13 @@ Default: `none`
110110

111111
Specify the location to search for asset files, relative to the current working directory. Can be a string or array of strings.
112112

113+
#### options.noconcat
114+
115+
Type: `Boolean`
116+
Default: `false`
117+
118+
Skip concatenation and add all assets to the stream instead.
119+
113120
### stream.restore()
114121

115122
Brings back the previously filtered out HTML files.

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gulp-useref",
3-
"version": "1.0.2",
3+
"version": "1.1.0",
44
"description": "Parse build blocks in HTML files to replace references to non-optimized scripts or stylesheets.",
55
"main": "index.js",
66
"directories": {
@@ -18,11 +18,11 @@
1818
"vinyl-fs": "^0.3.13"
1919
},
2020
"devDependencies": {
21-
"mocha": "*",
22-
"should": "*",
23-
"gulp-mocha": "^1.0.0",
2421
"gulp": "^3.6.1",
25-
"gulp-jshint": "^1.5.3"
22+
"gulp-jshint": "^1.5.3",
23+
"gulp-mocha": "^2.0.0",
24+
"mocha": "*",
25+
"should": "*"
2626
},
2727
"scripts": {
2828
"test": "mocha --reporter dot"

0 commit comments

Comments
 (0)