Skip to content

Commit 49f6096

Browse files
authored
Merge pull request #1 from iooxa/v1
V1
2 parents 6509320 + d64b102 commit 49f6096

Some content is hidden

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

45 files changed

+14367
-3949
lines changed

.eslintrc.json

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"env": {
3+
"browser": true,
4+
"es6": true,
5+
"node": true
6+
},
7+
"extends": [
8+
"airbnb-typescript",
9+
"eslint:recommended",
10+
"plugin:jest/recommended"
11+
],
12+
"globals": {
13+
"Atomics": "readonly",
14+
"SharedArrayBuffer": "readonly"
15+
},
16+
"parser": "@typescript-eslint/parser",
17+
"parserOptions": {
18+
"ecmaVersion": 2018,
19+
"sourceType": "module"
20+
},
21+
"plugins": [
22+
"@typescript-eslint"
23+
],
24+
"rules": {},
25+
"settings": {
26+
"import/resolver": {
27+
"node": {
28+
"extensions": [
29+
".js",
30+
".ts"
31+
]
32+
}
33+
}
34+
}
35+
}

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
11
dist/
22
node_modules/
3+
4+
5+
packages/ink-article/styles/index.css
6+
packages/ink-article/styles/index.css.map

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2019 Rowan Cockett
3+
Copyright (c) 2020 Rowan Cockett
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

README.md

-91
This file was deleted.

images/explorables.png

-45.2 KB
Binary file not shown.

images/tangle.gif

-62.8 KB
Binary file not shown.

images/tangle.png

-77.7 KB
Binary file not shown.

0 commit comments

Comments
 (0)