-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from synaphea/master
Propose mirgration of codebase from JS to TS
- Loading branch information
Showing
22 changed files
with
5,809 additions
and
330 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
{ | ||
"projectName": "iroha-javascript", | ||
"projectOwner": "GUCCI-swallow", | ||
"files": [ | ||
"README.md" | ||
], | ||
"imageSize": 100, | ||
"commit": true, | ||
"contributors": [ | ||
{ | ||
"login": "takemiyamakoto", | ||
"name": "誠", | ||
"avatar_url": "https://avatars3.githubusercontent.com/u/20982317?v=3&s=460", | ||
"profile": "https://github.com/takemiyamakoto", | ||
"contributions": [ | ||
"code" | ||
] | ||
}, | ||
{ | ||
"login": "luca3104", | ||
"name": "Satoshi Kaji", | ||
"avatar_url": "https://avatars0.githubusercontent.com/u/12592891?v=3&s=460", | ||
"profile": "https://github.com/luca3104", | ||
"contributions": [ | ||
"doc" | ||
] | ||
}, | ||
{ | ||
"login": "6londe", | ||
"name": "6londe", | ||
"avatar_url": "https://avatars0.githubusercontent.com/u/11345397?v=3&s=460", | ||
"profile": "https://github.com/6londe", | ||
"contributions": [ | ||
"doc" | ||
] | ||
}, | ||
{ | ||
"login": "theofilis", | ||
"name": "George Theofilis", | ||
"avatar_url": "https://avatars3.githubusercontent.com/u/475517?v=3&s=460", | ||
"profile": "https://github.com/theofilis", | ||
"contributions": [ | ||
"code", "test", "tool" | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"presets": [ | ||
["env", { | ||
"targets": { | ||
"browsers": ["last 2 versions", "safari >= 7"], | ||
"node": true | ||
}, | ||
"modules": false | ||
}] | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
version: 2 | ||
|
||
jobs: | ||
build: | ||
working_directory: ~/iroha-javascript | ||
docker: | ||
- image: node:7.7 | ||
steps: | ||
- checkout | ||
- restore_cache: | ||
key: irohajs-{{ .Branch }}-{{ checksum "package.json" }} | ||
- run: | ||
name: Pre-Dependencies | ||
command: mkdir ~/iroha-javascript/artifacts | ||
- run: | ||
name: Install Dependencies | ||
command: npm prune && npm cache clean && npm install | ||
- run: | ||
name: Test & Build | ||
command: npm run test:prod && npm run build | ||
- store_artifacts: | ||
path: ~/iroha-javascript/dist | ||
destination: iroha | ||
- save_cache: | ||
key: irohajs-{{ .Branch }}-{{ checksum "package.json" }} | ||
paths: | ||
- "~/iroha-javascript/node_modules" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,9 @@ | ||
# Created by https://www.gitignore.io/api/node | ||
|
||
### Node ### | ||
# Logs | ||
logs | ||
*.log | ||
npm-debug.log* | ||
|
||
# Runtime data | ||
pids | ||
*.pid | ||
*.seed | ||
*.pid.lock | ||
|
||
# Directory for instrumented libs generated by jscoverage/JSCover | ||
lib-cov | ||
|
||
# Coverage directory used by tools like istanbul | ||
node_modules | ||
coverage | ||
|
||
# nyc test coverage | ||
.nyc_output | ||
|
||
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) | ||
.grunt | ||
|
||
# node-waf configuration | ||
.lock-wscript | ||
|
||
# Compiled binary addons (http://nodejs.org/api/addons.html) | ||
build/Release | ||
|
||
# Dependency directories | ||
node_modules | ||
jspm_packages | ||
|
||
# Optional npm cache directory | ||
.npm | ||
|
||
# Optional eslint cache | ||
.eslintcache | ||
|
||
# Optional REPL history | ||
.node_repl_history | ||
|
||
dist | ||
.DS_Store | ||
*.log | ||
.vscode | ||
.idea | ||
/dist/ | ||
.awcache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.