Skip to content

Commit

Permalink
fix(init): missing .markdownlint.json on published package (#204)
Browse files Browse the repository at this point in the history
  • Loading branch information
ybiquitous authored Jun 17, 2018
1 parent 7d8b30a commit 54afaeb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
"lib",
"templates",
".editorconfig",
".prettierignore"
".prettierignore",
".markdownlint.json"
],
"engines": {
"node": ">=8"
Expand Down
2 changes: 2 additions & 0 deletions test/init.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,8 @@ test('init', t => {
const original = await ctx.readOrigFile(file)
const copy = await ctx.readWorkFile(file)
t.is(original, copy)

t.ok(pkg.files.includes(file))
t.end()
})
})
Expand Down

0 comments on commit 54afaeb

Please sign in to comment.