We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8016c1c + bef66a1 commit 54a5dc9Copy full SHA for 54a5dc9
30 files changed
.eslintignore
@@ -0,0 +1 @@
1
+/dist
.eslintrc
@@ -0,0 +1,6 @@
+{
2
+ "extends": [
3
+ "oclif",
4
+ "oclif-typescript"
5
+ ]
6
+}
.gitignore
@@ -3,8 +3,9 @@
/.nyc_output
/dist
/lib
+/package-lock.json
7
/tmp
-/yarn.lock
8
node_modules
9
+oclif.manifest.json
10
11
.env
.mocharc.json
@@ -0,0 +1,12 @@
+ "require": [
+ "test/helpers/init.js",
+ "ts-node/register"
+ ],
+ "watch-extensions": [
+ "ts"
+ "recursive": true,
+ "reporter": "spec",
+ "timeout": 60000
12
0 commit comments