Skip to content
This repository was archived by the owner on May 15, 2022. It is now read-only.

Commit c4194be

Browse files
Removed yarn in favour of npm, removed husky/lint-staged, moved @babel/runtime to dev dep
1 parent c2f3359 commit c4194be

15 files changed

+28524
-17641
lines changed

.gitignore

Lines changed: 94 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,99 @@
1-
2-
# See https://help.github.com/ignore-files/ for more about ignoring files.
3-
4-
# dependencies
1+
# Build ...
52
node_modules
3+
npm-debug.log
4+
tmp
5+
6+
# Next
67

7-
# builds
8-
coverage
9-
build
10-
dist
11-
.rpt2_cache
128
.next
139

14-
# misc
10+
# Created by https://www.gitignore.io
11+
12+
### OSX ###
1513
.DS_Store
16-
.env
17-
.env.local
18-
.env.development.local
19-
.env.test.local
20-
.env.production.local
21-
.vscode
22-
23-
npm-debug.log*
24-
yarn-debug.log*
25-
yarn-error.log*
14+
.AppleDouble
15+
.LSOverride
16+
17+
# Icon must end with two \r
18+
Icon
19+
20+
21+
# Thumbnails
22+
._*
23+
24+
# Files that might appear in the root of a volume
25+
.DocumentRevisions-V100
26+
.fseventsd
27+
.Spotlight-V100
28+
.TemporaryItems
29+
.Trashes
30+
.VolumeIcon.icns
31+
32+
# Directories potentially created on remote AFP share
33+
.AppleDB
34+
.AppleDesktop
35+
Network Trash Folder
36+
Temporary Items
37+
.apdisk
38+
39+
40+
### Vim ###
41+
[._]*.s[a-w][a-z]
42+
[._]s[a-w][a-z]
43+
*.un~
44+
Session.vim
45+
.netrwhist
46+
*~
47+
48+
49+
### SublimeText ###
50+
# cache files for sublime text
51+
*.tmlanguage.cache
52+
*.tmPreferences.cache
53+
*.stTheme.cache
54+
55+
# workspace files are user-specific
56+
*.sublime-workspace
57+
58+
# project files should be checked into the repository, unless a significant
59+
# proportion of contributors will probably not be using SublimeText
60+
# *.sublime-project
61+
62+
# sftp configuration file
63+
sftp-config.json
64+
65+
66+
### Node ###
67+
# Logs
68+
logs
69+
*.log
70+
71+
# Runtime data
72+
pids
73+
*.pid
74+
*.seed
75+
76+
# Directory for instrumented libs generated by jscoverage/JSCover
77+
lib-cov
78+
79+
# Coverage directory used by tools like istanbul
80+
coverage
81+
82+
# node-waf configuration
83+
.lock-wscript
84+
85+
# Compiled binary addons (http://nodejs.org/api/addons.html)
86+
87+
# Dependency directory
88+
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
89+
node_modules
90+
91+
92+
### Linux ###
93+
*~
94+
95+
# KDE directory preferences
96+
.directory
97+
98+
# Linux trash folder which might appear on any partition or disk
99+
.Trash-*

.travis.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,11 @@ cache:
77
- ~/.npm
88
install: npm install
99
script:
10-
- npm run build
10+
- npm run lint
1111
- npm run test
1212
branches:
13-
only: master
13+
- master
14+
- develop
15+
- /^feature.*$/
1416
notifications:
1517
email: false

0 commit comments

Comments
 (0)