Skip to content

Commit

Permalink
Update dev-dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
wooorm committed Mar 30, 2020
1 parent 7411828 commit c030da9
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@
"unified-engine-gulp": "^7.0.0"
},
"devDependencies": {
"nyc": "^14.0.0",
"nyc": "^15.0.0",
"plugin-error": "^1.0.0",
"prettier": "^1.0.0",
"remark-cli": "^7.0.0",
"remark-html": "^10.0.0",
"prettier": "^2.0.0",
"remark-cli": "^8.0.0",
"remark-html": "^11.0.0",
"remark-preset-wooorm": "^6.0.0",
"tape": "^4.0.0",
"vinyl": "^2.0.0",
"xo": "^0.24.0"
"xo": "^0.28.0"
},
"scripts": {
"format": "remark . -qfo && prettier --write \"**/*.js\" && xo --fix",
Expand Down
10 changes: 5 additions & 5 deletions test.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ var commonmarkFixture = new Vinyl({
contents: Buffer.from('1) List in commonmark')
})

test('gulp-remark', function(t) {
t.test('should not do anything', function(st) {
test('gulp-remark', function (t) {
t.test('should not do anything', function (st) {
st.plan(2)

const stream = remark({silent: true})
Expand All @@ -30,7 +30,7 @@ test('gulp-remark', function(t) {
}
})

t.test('should support settings', function(st) {
t.test('should support settings', function (st) {
var stream = remark({settings: {commonmark: true}, silent: true}).use(html)

st.plan(2)
Expand All @@ -48,7 +48,7 @@ test('gulp-remark', function(t) {
}
})

t.test('should use plugins', function(st) {
t.test('should use plugins', function (st) {
var stream = remark({silent: true}).use(html)

st.plan(2)
Expand All @@ -66,7 +66,7 @@ test('gulp-remark', function(t) {
}
})

t.test('should throw PluginError with streams', function(st) {
t.test('should throw PluginError with streams', function (st) {
var inStream = new PassThrough()

var outStream = new Vinyl({contents: inStream})
Expand Down

0 comments on commit c030da9

Please sign in to comment.