Skip to content
This repository was archived by the owner on Nov 22, 2024. It is now read-only.

Commit e8c2e04

Browse files
authored
Merge pull request #1 from jasoniangreen/master
First pass at extracting the core
2 parents 34cfe51 + fa714f2 commit e8c2e04

File tree

128 files changed

+5663
-156730
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

128 files changed

+5663
-156730
lines changed

.babelrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"presets": ["react", "es2015"]
2+
"presets": ["es2015"]
33
}

.eslintrc.json

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"env": {
3+
"browser": true,
4+
"es6": true
5+
},
6+
"extends": [
7+
"eslint:recommended"
8+
],
9+
"parser": "babel-eslint",
10+
"parserOptions": {
11+
"ecmaFeatures": {
12+
"experimentalObjectRestSpread": true
13+
},
14+
"sourceType": "module"
15+
},
16+
"rules": {
17+
"strict": 0,
18+
"linebreak-style": [
19+
"error",
20+
"unix"
21+
],
22+
"no-console": [
23+
"off"
24+
],
25+
"no-unused-vars": [
26+
"warn"
27+
],
28+
"no-constant-condition": [
29+
"warn"
30+
],
31+
"no-empty": [
32+
"warn"
33+
]
34+
}
35+
}

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,5 @@ literallycanvas/
44
node_modules/
55
*.log
66
package-lock.json
7+
.DS_Store
8+
lib/

demo/NODE_ENV.js

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

demo/bear.png

-27.5 KB
Binary file not shown.

0 commit comments

Comments
 (0)