diff options
author | eric thul <thul.eric@gmail.com> | 2017-04-15 15:48:32 -0400 |
---|---|---|
committer | eric thul <thul.eric@gmail.com> | 2017-04-15 15:48:32 -0400 |
commit | dd2b6b9baf6061d7048f610abf966911a992acdf (patch) | |
tree | 1dc20d4b31c250a89a084f5c8332e4f24975781a | |
parent | 496cc5965d7edef3a93df1ee5ae18afd61074168 (diff) | |
parent | 33d2ee7199faef1cd9229d7aa0584446b78c39b0 (diff) | |
download | purs-loader-dd2b6b9baf6061d7048f610abf966911a992acdf.tar.gz purs-loader-dd2b6b9baf6061d7048f610abf966911a992acdf.tar.zst purs-loader-dd2b6b9baf6061d7048f610abf966911a992acdf.zip |
Merge branch 'ryani33-fix-deprecated-warning'
-rw-r--r-- | package.json | 2 | ||||
-rw-r--r-- | src/index.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/package.json b/package.json index 627bbb3..6aa6212 100644 --- a/package.json +++ b/package.json | |||
@@ -42,8 +42,8 @@ | |||
42 | "debug": "^2.2.0", | 42 | "debug": "^2.2.0", |
43 | "globby": "^4.0.0", | 43 | "globby": "^4.0.0", |
44 | "js-string-escape": "^1.0.1", | 44 | "js-string-escape": "^1.0.1", |
45 | "loader-utils": "^0.2.14", | ||
46 | "lodash.difference": "^4.5.0", | 45 | "lodash.difference": "^4.5.0", |
46 | "loader-utils": "^1.0.2", | ||
47 | "promise-retry": "^1.1.0" | 47 | "promise-retry": "^1.1.0" |
48 | }, | 48 | }, |
49 | "devDependencies": { | 49 | "devDependencies": { |
diff --git a/src/index.js b/src/index.js index 6fb2fce..047927c 100644 --- a/src/index.js +++ b/src/index.js | |||
@@ -15,7 +15,7 @@ const eol = require('os').EOL | |||
15 | module.exports = function purescriptLoader(source, map) { | 15 | module.exports = function purescriptLoader(source, map) { |
16 | const callback = this.async() | 16 | const callback = this.async() |
17 | const config = this.options | 17 | const config = this.options |
18 | const query = loaderUtils.parseQuery(this.query) | 18 | const query = loaderUtils.getOptions(this) || {} |
19 | const webpackOptions = this.options.purescriptLoader || {} | 19 | const webpackOptions = this.options.purescriptLoader || {} |
20 | 20 | ||
21 | const depsPaths = (pscPackage => { | 21 | const depsPaths = (pscPackage => { |