Skip to content

Commit ca0d605

Browse files
authored
Merge pull request #78 from hackmdio/release/2.2.0
Release 2.2.0
2 parents 02e1ea3 + d7b4ab9 commit ca0d605

30 files changed

+6284
-16925
lines changed

.eslintignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/dist

.eslintrc

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"extends": [
3+
"oclif",
4+
"oclif-typescript"
5+
]
6+
}

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@
33
/.nyc_output
44
/dist
55
/lib
6+
/package-lock.json
67
/tmp
7-
/yarn.lock
88
node_modules
9+
oclif.manifest.json
910

1011
.env

.mocharc.json

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"require": [
3+
"test/helpers/init.js",
4+
"ts-node/register"
5+
],
6+
"watch-extensions": [
7+
"ts"
8+
],
9+
"recursive": true,
10+
"reporter": "spec",
11+
"timeout": 60000
12+
}

0 commit comments

Comments
 (0)