Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f64304b commit 9b6f9c1Copy full SHA for 9b6f9c1
index.js
@@ -7,9 +7,7 @@ function cssnextLoader(contents){
7
options.features = assign({}, this.options.cssnext ? this.options.cssnext.features : null)
8
options.features.import = assign({}, options.features.import || null)
9
options.features.import.onImport = function(files){
10
- files.forEach(function(file){
11
- this.addDependency(file)
12
- }, this)
+ files.forEach(this.addDependency)
13
}.bind(this)
14
try {
15
return cssnext(contents, options)
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "cssnext-loader",
3
- "version": "0.1.0",
+ "version": "0.1.1",
4
"description": "webpack loader for cssnext",
5
"main": "index.js",
6
"scripts": {
0 commit comments