-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[#19] Updated readme to mention Java 8
Updated the readme to mention EvilMusic requires Java 8 instead of Java 7. Also... * Updated the tern project file to support tern's new format * Added npm log to the git ignore file
- Loading branch information
Showing
3 changed files
with
17 additions
and
17 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 |
---|---|---|
|
@@ -7,6 +7,7 @@ | |
/evilmusic.log | ||
/.gradle/ | ||
/node_modules/ | ||
/npm-debug.log | ||
/.project | ||
/.settings/ | ||
/src/main/webapp/dist | ||
|
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,18 +1,17 @@ | ||
{ | ||
"libs": [ | ||
"browser", | ||
"ecma5", | ||
"ecma6", | ||
"jquery" | ||
], | ||
"loadEagerly": [ | ||
"src/main/webapp/**/*.js" | ||
], | ||
"plugins": { | ||
"complete_strings": {}, | ||
"angular": {}, | ||
"doc_comment": { | ||
"fullDocs": true | ||
"ecmaVersion": 6, | ||
"libs": [ | ||
"browser" | ||
], | ||
"loadEagerly": [ | ||
"src/main/webapp/**/*.js" | ||
], | ||
"plugins": { | ||
"es_modules": {}, | ||
"complete_strings": {}, | ||
"angular": {}, | ||
"doc_comment": { | ||
"fullDocs": true | ||
} | ||
} | ||
} | ||
} | ||
} |
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