Skip to content

Commit 3e4b58c

Browse files
committed
Update information to reflect forked status
1 parent af05ab3 commit 3e4b58c

File tree

5 files changed

+33
-9
lines changed

5 files changed

+33
-9
lines changed

.esdoc.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
},
1313
"brand": {
1414
"title": "mte-kernel",
15-
"site": "https://github.com/susisu/mte-kernel",
16-
"repository": "https://github.com/susisu/mte-kernel.git"
15+
"site": "https://github.com/tgrosinger/mte-kernel",
16+
"repository": "https://github.com/tgrosinger/mte-kernel.git"
1717
},
1818
"accessor": {
1919
"access": ["public", "protected"],

LICENSE

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
Copyright (c) 2017 Susisu
2+
Copyright (c) 2020 Tony Grosinger
23

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

README.md

+10-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,18 @@
11
# markdown-table-editor kernel
22
The text editor independent part of [atom-markdown-table-editor][atom-mte].
33

4+
**Note:** This was originally created by [@susisu](https://github.com/susisu).
5+
*This fork is intended to convert the project to Typescript and start adding
6+
*additional functionality such as table sorting, and possibly even basic
7+
*spreadsheet capabilities.
8+
49
![demo](https://github.com/susisu/markdown-table-editor/wiki/images/demo.gif)
510

611
[You can try it on your browser!](https://susisu.github.io/mte-demo/)
712

813
## Installation
9-
``` shell
10-
npm i -S @susisu/mte-kernel
11-
```
14+
15+
TBD
1216

1317
## Usage
1418
Implement an [interface to the text editor][doc-ITextEditor].
@@ -50,4 +54,6 @@ It is also good to look into [atom-markdown-table-editor][atom-mte-repo] as a re
5054
[MIT License](http://opensource.org/licenses/mit-license.php)
5155

5256
## Author
53-
Susisu ([GitHub](https://github.com/susisu), [Twitter](https://twitter.com/susisu2413))
57+
58+
Original author: Susisu ([GitHub](https://github.com/susisu), [Twitter](https://twitter.com/susisu2413))
59+
Current author: Tony Grosinger ([Github](https://github.com/tgrosinger))

npm

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
#!/bin/bash
2+
3+
# Use this command just as you would `yarn`.
4+
# Examples:
5+
#
6+
# ./npm help
7+
# ./npm i # Install dependencies locally using package-lock.json
8+
# ./npm run eslint
9+
# ./npm i -E -D "eslint" # Install the eslint package as a dev-only dep
10+
# ./npm i -E "react" # Install the react package as a dep
11+
12+
docker run --rm \
13+
-v "$(pwd)":/code \
14+
-w /code \
15+
--entrypoint npm \
16+
node:14.5.0-slim \
17+
"$@"

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@
2828
},
2929
"repository": {
3030
"type": "git",
31-
"url": "git+https://github.com/susisu/mte-kernel.git"
31+
"url": "git+https://github.com/tgrosinger/mte-kernel.git"
3232
},
3333
"author": "Susisu <[email protected]> (https://github.com/susisu)",
3434
"license": "MIT",
3535
"bugs": {
36-
"url": "https://github.com/susisu/mte-kernel/issues"
36+
"url": "https://github.com/tgrosinger/mte-kernel/issues"
3737
},
38-
"homepage": "https://github.com/susisu/mte-kernel#readme",
38+
"homepage": "https://github.com/tgrosinger/mte-kernel#readme",
3939
"devDependencies": {
4040
"babel-core": "^6.26.3",
4141
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",

0 commit comments

Comments
 (0)