Skip to content

Commit 78d02e4

Browse files
committed
Use Rollup and PostCSS for building
1 parent ff376b8 commit 78d02e4

9 files changed

+55
-629
lines changed

.babelrc

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"presets": [
3+
[
4+
"es2015",
5+
{
6+
"modules": false
7+
}
8+
]
9+
],
10+
"plugins": [
11+
"external-helpers"
12+
]
13+
}

.csscomb.json

-328
This file was deleted.

.eslintrc

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"extends": "airbnb-base",
3+
"env": {
4+
"browser": true
5+
},
6+
"rules": {
7+
"arrow-body-style": 0,
8+
"comma-dangle": 0,
9+
"default-case": 0,
10+
"no-param-reassign": 0,
11+
"no-plusplus": 0
12+
}
13+
}

.htmlcombrc

-19
This file was deleted.

0 commit comments

Comments
 (0)