Skip to content

Commit 6bdbbf4

Browse files
committed
initial commit
0 parents  commit 6bdbbf4

35 files changed

+5475
-0
lines changed

Diff for: .babelrc

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"presets": [
3+
[ "env", { "loose": true, "modules": false } ]
4+
],
5+
"plugins": [
6+
"external-helpers"
7+
]
8+
}

Diff for: .editorconfig

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# EditorConfig is awesome: http://EditorConfig.org
2+
3+
# top-most EditorConfig file
4+
root = true
5+
6+
[*]
7+
end_of_line = lf
8+
insert_final_newline = true
9+
10+
[*.{js|json}]
11+
charset = utf-8
12+
indent_style = space
13+
indent_size = 2

Diff for: .gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
node_modules
2+
.idea
3+
.DS_Store
4+
browser.js

Diff for: .npmignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules
2+
.idea
3+
.DS_Store

0 commit comments

Comments
 (0)