Skip to content

Commit 9147666

Browse files
committed
CHG: reduce dependency
- update version to `0.2.0`
1 parent befb4be commit 9147666

File tree

11 files changed

+2299
-13420
lines changed

11 files changed

+2299
-13420
lines changed

.babelrc

Lines changed: 0 additions & 12 deletions
This file was deleted.

.eslintrc

Lines changed: 0 additions & 25 deletions
This file was deleted.

.eslintrc.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
module.exports = {
2+
parser: 'babel-eslint',
3+
extends: [ 'standard', 'standard-react' ],
4+
plugins: [ 'react' ],
5+
rules: {
6+
'jsx-quotes': [ 'error', 'prefer-double' ]
7+
}
8+
}

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
# See https://help.github.com/ignore-files/ for more about ignoring files.
32

43
# dependencies
@@ -7,6 +6,7 @@ node_modules
76
# builds
87
build
98
dist
9+
*.tgz
1010

1111
# misc
1212
.DS_Store
@@ -15,6 +15,7 @@ dist
1515
.env.development.local
1616
.env.test.local
1717
.env.production.local
18+
.idea
1819

1920
npm-debug.log*
2021
yarn-debug.log*

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2018 MockingBot
3+
Copyright (c) 2019 MockingBot
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

babel.config.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
module.exports = {
2+
presets: [
3+
[ '@babel/env', { modules: false } ],
4+
'@babel/react'
5+
],
6+
plugins: [
7+
'@babel/proposal-class-properties',
8+
'babel-plugin-styled-components'
9+
]
10+
}

0 commit comments

Comments
 (0)