File: use-neo-async.patch

package info (click to toggle)
node-extract-text-webpack-plugin 3.0.2-5
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,196 kB
  • sloc: javascript: 1,072; makefile: 2
file content (13 lines) | stat: -rw-r--r-- 466 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
Description: Use neo async
 neo-async is drop-in replacement for async
--- a/src/index.js
+++ b/src/index.js
@@ -2,7 +2,7 @@
 import path from 'path';
 import Chunk from 'webpack/lib/Chunk';
 import { ConcatSource } from 'webpack-sources';
-import async from 'async';
+import async from 'neo-async';
 import loaderUtils from 'loader-utils';
 import validateOptions from 'schema-utils';
 import ExtractTextPluginCompilation from './lib/ExtractTextPluginCompilation';