Skip to content

Commit 410bbf9

Browse files
committedFeb 2, 2018
chore(package): update dependencies
1 parent 56232e7 commit 410bbf9

File tree

3 files changed

+6
-9
lines changed

3 files changed

+6
-9
lines changed
 

‎package.json

+4-5
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,11 @@
1313
"loader-utils": "^1.1.0",
1414
"postcss": "^6.0.0",
1515
"postcss-load-config": "^1.2.0",
16-
"schema-utils": "^0.3.0"
16+
"schema-utils": "^0.4.0"
1717
},
1818
"devDependencies": {
19-
"coveralls": "^2.0.0",
20-
"jest": "^21.0.0",
21-
"jsdoc-to-markdown": "^3.0.0",
19+
"jest": "^22.0.0",
20+
"jsdoc-to-markdown": "^4.0.0",
2221
"memory-fs": "^0.4.0",
2322
"postcss-import": "^11.0.0",
2423
"postcss-js": "^1.0.0",
@@ -29,7 +28,7 @@
2928
"webpack": "^3.0.0"
3029
},
3130
"scripts": {
32-
"clean": "rm -rf dmd jest* coverage jsdoc-api test/results",
31+
"clean": "rm -rf coverage test/outputs",
3332
"lint": "standard",
3433
"docs": "jsdoc2md lib/index.js > LOADER.md",
3534
"postdocs": "npm run clean",

‎test/__snapshots__/Errors.test.js.snap

+1-3
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,7 @@ exports[`Errors Syntax Error 1`] = `
1212
`;
1313
1414
exports[`Errors Validation Error 1`] = `
15-
"Validation Error
16-
17-
PostCSS Loader Invalid Options
15+
"PostCSS Loader Invalid Options
1816
1917
options.sourceMap should be string,boolean
2018
"

‎test/helpers/compiler.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ module.exports = function compiler (fixture, config, options) {
1212
output: {
1313
path: path.resolve(
1414
__dirname,
15-
`../results/${config.path ? config.path : ''}`
15+
`../outputs/${config.path ? config.path : ''}`
1616
),
1717
filename: '[name].bundle.js'
1818
},

0 commit comments

Comments
 (0)
Please sign in to comment.