File tree 5 files changed +53
-2
lines changed
5 files changed +53
-2
lines changed Original file line number Diff line number Diff line change
1
+ # # copy from .gitignore
2
+ .DS_Store
3
+ .idea
4
+ npm-debug.log *
5
+ yarn-debug.log *
6
+ yarn-error.log *
7
+ node_modules /
8
+ .npm
9
+ .eslintcache
10
+ /coverage /
11
+ /.nyc_output /
12
+ /tmp /
13
+
14
+ # .npmignore
15
+ .babelrc
16
+ .editorconfig
17
+ .eslintignore
18
+ .eslintrc.js
19
+ .gitignore
20
+ .nvmrc
21
+ .nycrc
22
+ .prettierignore
23
+ .prettierrc
24
+ .travis.yml
25
+ AUTHORS.md
26
+ CONTRIBUTING.md
27
+ tsconfig.json
28
+ tslint.json
29
+ /example
30
+ /test
31
+ /docs
32
+ /coverage
33
+ /coverage
Original file line number Diff line number Diff line change
1
+ 10
Original file line number Diff line number Diff line change
1
+ # for potential vendor files in src
2
+ lib /** /*
3
+ src /lib /vendor /** /*
Original file line number Diff line number Diff line change
1
+ {
2
+ "printWidth": 100,
3
+ "tabWidth": 2,
4
+ "singleQuote": true,
5
+ "trailingComma": "all",
6
+ "overrides": [
7
+ {
8
+ "files": "*.json",
9
+ "options": {
10
+ "printWidth": 999999
11
+ }
12
+ }
13
+ ]
14
+ }
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ language: node_js
3
3
cache : npm
4
4
5
5
node_js :
6
- - ' 8 '
6
+ - ' 10 '
7
7
8
8
sudo : false
9
9
@@ -28,5 +28,5 @@ deploy:
28
28
api_key : $NPM_TOKEN
29
29
on :
30
30
tags : true
31
- node : ' 8 '
31
+ node : ' 10 '
32
32
skip_cleanup : true
You can’t perform that action at this time.
0 commit comments