Skip to content

Commit

Permalink
typescriptified
Browse files Browse the repository at this point in the history
  • Loading branch information
backslash47 committed Oct 29, 2018
1 parent f7ab542 commit d8e87d3
Show file tree
Hide file tree
Showing 22 changed files with 9,954 additions and 3,875 deletions.
36 changes: 36 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
"env": {
"development": {
"presets": [
[
"env",
{
"modules": false,
"targets": {
"chrome": 67
}
}
]
],
"plugins": [
"transform-object-rest-spread"
]
},
"production": {
"presets": [
[
"env",
{
"modules": false,
"targets": {
"chrome": 67
}
}
]
],
"plugins": [
"transform-object-rest-spread"
]
}
}
}
22 changes: 20 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,20 @@
node_modules/
coverage/
node_modules
/.project
/.settings/


/docs/_build/
lib/

# Logs
*.log

# Coverage
/.nyc_output
/coverage

# IDE specific
/.vscode

/.DS_Store
src/.DS_Store
7 changes: 0 additions & 7 deletions .min-wd

This file was deleted.

23 changes: 19 additions & 4 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,19 @@
coverage/
.travis.yml
.min-wd
Makefile
node_modules
/.project
/.settings/


/docs/_build/

# Logs
*.log

# Coverage
/.nyc_output
/coverage

# IDE specific
/.vscode

/.DS_Store
src/.DS_Store
6 changes: 6 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"printWidth": 120,
"trailingComma": "none",
"singleQuote": true,
"arrowParens": "always"
}
6 changes: 0 additions & 6 deletions .travis.yml

This file was deleted.

236 changes: 0 additions & 236 deletions lib/hdkey.js

This file was deleted.

Loading

0 comments on commit d8e87d3

Please sign in to comment.