Skip to content

Commit 6cf397b

Browse files
authored
Merge pull request #2 from endlessdev/refactoring
Refactoring
2 parents 9b7c13a + 77ac9aa commit 6cf397b

33 files changed

+2166
-4138
lines changed

.gitignore

Lines changed: 87 additions & 63 deletions
Original file line numberDiff line numberDiff line change
@@ -1,63 +1,87 @@
1-
node_modules/
2-
built/*
3-
tests/cases/rwc/*
4-
tests/cases/test262/*
5-
tests/cases/perf/*
6-
!tests/cases/webharness/compilerToString.js
7-
test-args.txt
8-
~*.docx
9-
\#*\#
10-
.\#*
11-
tests/baselines/local/*
12-
tests/baselines/local.old/*
13-
tests/services/baselines/local/*
14-
tests/baselines/prototyping/local/*
15-
tests/baselines/rwc/*
16-
tests/baselines/test262/*
17-
tests/baselines/reference/projectOutput/*
18-
tests/baselines/local/projectOutput/*
19-
tests/baselines/reference/testresults.tap
20-
tests/services/baselines/prototyping/local/*
21-
tests/services/browser/typescriptServices.js
22-
scripts/authors.js
23-
scripts/configureNightly.js
24-
scripts/processDiagnosticMessages.d.ts
25-
scripts/processDiagnosticMessages.js
26-
scripts/importDefinitelyTypedTests/importDefinitelyTypedTests.js
27-
src/harness/*.js
28-
src/compiler/diagnosticInformationMap.generated.ts
29-
src/compiler/diagnosticMessages.generated.json
30-
rwc-report.html
31-
*.swp
32-
build.json
33-
*.actual
34-
tests/webTestServer.js
35-
tests/webTestServer.js.map
36-
tests/webhost/*.d.ts
37-
tests/webhost/webtsc.js
38-
tests/cases/**/*.js
39-
tests/cases/**/*.js.map
40-
*.config
41-
scripts/debug.bat
42-
scripts/run.bat
43-
scripts/word2md.js
44-
scripts/buildProtocol.js
45-
scripts/ior.js
46-
scripts/buildProtocol.js
47-
scripts/*.js.map
48-
scripts/typings/
49-
coverage/
50-
internal/
51-
**/.DS_Store
52-
.settings
53-
**/.vs
54-
**/.vscode
55-
!**/.vscode/tasks.json
56-
!tests/cases/projects/projectOption/**/node_modules
57-
!tests/cases/projects/NodeModulesSearch/**/*
58-
!tests/baselines/reference/project/nodeModules*/**/*
59-
.idea
60-
yarn.lock
61-
62-
app.js
63-
app.js.map
1+
# Created by .ignore support plugin (hsz.mobi)
2+
### JetBrains template
3+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
4+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
5+
6+
# User-specific stuff:
7+
.idea/workspace.xml
8+
.idea/tasks.xml
9+
.idea/dictionaries
10+
.idea/vcs.xml
11+
.idea/jsLibraryMappings.xml
12+
13+
# Sensitive or high-churn files:
14+
.idea/dataSources.ids
15+
.idea/dataSources.xml
16+
.idea/dataSources.local.xml
17+
.idea/sqlDataSources.xml
18+
.idea/dynamic.xml
19+
.idea/uiDesigner.xml
20+
21+
# Gradle:
22+
.idea/gradle.xml
23+
.idea/libraries
24+
25+
# Mongo Explorer plugin:
26+
.idea/mongoSettings.xml
27+
28+
## File-based project format:
29+
*.iws
30+
31+
## Plugin-specific files:
32+
33+
# IntelliJ
34+
/out/
35+
36+
# mpeltonen/sbt-idea plugin
37+
.idea_modules/
38+
39+
# JIRA plugin
40+
atlassian-ide-plugin.xml
41+
42+
# Crashlytics plugin (for Android Studio and IntelliJ)
43+
com_crashlytics_export_strings.xml
44+
crashlytics.properties
45+
crashlytics-build.properties
46+
fabric.properties
47+
### Node template
48+
# Logs
49+
logs
50+
*.log
51+
npm-debug.log*
52+
53+
# Runtime data
54+
pids
55+
*.pid
56+
*.seed
57+
58+
# Directory for instrumented libs generated by jscoverage/JSCover
59+
lib-cov
60+
61+
# Coverage directory used by tools like istanbul
62+
coverage
63+
64+
# nyc test coverage
65+
.nyc_output
66+
67+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
68+
.grunt
69+
70+
# node-waf configuration
71+
.lock-wscript
72+
73+
# Compiled binary addons (http://nodejs.org/api/addons.html)
74+
build/Release
75+
76+
# Dependency directories
77+
node_modules
78+
jspm_packages
79+
80+
# Optional npm cache directory
81+
.npm
82+
83+
# Optional REPL history
84+
.node_repl_history
85+
86+
app
87+
libs/android-cli.js

.travis.yml

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

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# Android CLI
2-
1+
<p align="center">
32
<img alt="AndroidCLI" src="http://i.imgur.com/3wCVzej.png" width="400" />
43

5-
64
[![Join Gitter chat][gitter-image]][gitter-url]
75
[![Build Status][travis-image]][travis-url]
86
[![npm Version][npm-image]][npm-url]
97

8+
</p>
9+
1010
CLI for android applications
1111

1212
## Installation

0 commit comments

Comments
 (0)