diff --git a/package.json b/package.json index 907bb447..931802ba 100644 --- a/package.json +++ b/package.json @@ -13,12 +13,11 @@ "loader-utils": "^1.1.0", "postcss": "^6.0.0", "postcss-load-config": "^1.2.0", - "schema-utils": "^0.3.0" + "schema-utils": "^0.4.0" }, "devDependencies": { - "coveralls": "^2.0.0", - "jest": "^21.0.0", - "jsdoc-to-markdown": "^3.0.0", + "jest": "^22.0.0", + "jsdoc-to-markdown": "^4.0.0", "memory-fs": "^0.4.0", "postcss-import": "^11.0.0", "postcss-js": "^1.0.0", @@ -29,7 +28,7 @@ "webpack": "^3.0.0" }, "scripts": { - "clean": "rm -rf dmd jest* coverage jsdoc-api test/results", + "clean": "rm -rf coverage test/outputs", "lint": "standard", "docs": "jsdoc2md lib/index.js > LOADER.md", "postdocs": "npm run clean", diff --git a/test/__snapshots__/Errors.test.js.snap b/test/__snapshots__/Errors.test.js.snap index b6602197..cba7269b 100644 --- a/test/__snapshots__/Errors.test.js.snap +++ b/test/__snapshots__/Errors.test.js.snap @@ -12,9 +12,7 @@ exports[`Errors Syntax Error 1`] = ` `; exports[`Errors Validation Error 1`] = ` -"Validation Error - -PostCSS Loader Invalid Options +"PostCSS Loader Invalid Options options.sourceMap should be string,boolean " diff --git a/test/helpers/compiler.js b/test/helpers/compiler.js index 27af733f..bef499a2 100644 --- a/test/helpers/compiler.js +++ b/test/helpers/compiler.js @@ -12,7 +12,7 @@ module.exports = function compiler (fixture, config, options) { output: { path: path.resolve( __dirname, - `../results/${config.path ? config.path : ''}` + `../outputs/${config.path ? config.path : ''}` ), filename: '[name].bundle.js' },