forked from phobal/ivideo
-
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.
* Check if PORT in use before starting dev env * Used electron-rebuild to compile ./app/package.json dependencies * Added css minification in production * Fixed CheckPortInUse functionality * Reduced webpack dll boilerplate, migrated to EnvPlugin * Added electron-rebuild script to both package.json's * Updated editorconfig, fixed publicPath in webpack renderer prod config * [ci skip] Removed extraneous name prefix from dev expr babel plugin * Swapped babili for uglifyjs, re-enabled multiStep webpack HMR * Reduced and refactored docs * Removed CI check, fixed font paths in css files * Removed explicit electron version flag from electron-rebuild * Added source map support for uglify * Fix sourceMap config in main process * Properly parallelized electron-rebuild * Fixed all flow definitions * Updated react to 16 * Check and warn the user if there are native deps installed in root folder (#1246) * Implemented native deps checker * Modified postinstall script to run native dep check * Code cleanup * Updated formatting * Bumped deps * 'CheckNativeDep' script enhancements (#1327) * CheckNativeDep enhancements * Enhanced output * Require sudo in travis * CI Fixes (#1329) * Temporarily remove concurrently from postinstall script * Fixed cylical dependency between webpack dev renderer configs * Removed conflicting dependencies * Removed eslint-plugin-flowtype-errors * Fixed all eslint errors, bumped deps * Fixed linux category * Bumped deps * Fixed ordering of CheckNativeDep script, improved error message
- Loading branch information
Showing
31 changed files
with
4,591 additions
and
3,489 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
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,53 @@ | ||
# Logs | ||
logs | ||
*.log | ||
|
||
# Runtime data | ||
pids | ||
*.pid | ||
*.seed | ||
|
||
# Directory for instrumented libs generated by jscoverage/JSCover | ||
lib-cov | ||
|
||
# Coverage directory used by tools like istanbul | ||
coverage | ||
|
||
# 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 | ||
.eslintcache | ||
|
||
# Dependency directory | ||
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git | ||
node_modules | ||
app/node_modules | ||
|
||
# OSX | ||
.DS_Store | ||
|
||
# flow-typed | ||
flow-typed/npm/* | ||
!flow-typed/npm/module_vx.x.x.js | ||
|
||
# App packaged | ||
release | ||
app/main.prod.js | ||
app/main.prod.js.map | ||
app/renderer.prod.js | ||
app/renderer.prod.js.map | ||
app/style.css | ||
app/style.css.map | ||
dist | ||
dll | ||
main.js | ||
main.js.map | ||
|
||
.idea | ||
npm-debug.log.* | ||
.*.dockerfile |
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 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 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,4 +1,6 @@ | ||
* text eol=lf | ||
*.png binary | ||
*.jpg binary | ||
*.jpeg binary | ||
*.ico binary | ||
*.icns binary |
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,4 +1,4 @@ | ||
sudo: false | ||
sudo: true | ||
|
||
language: node_js | ||
|
||
|
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 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 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,22 +1,21 @@ | ||
{ | ||
"rules": { | ||
"flowtype/boolean-style": [2, "boolean"], | ||
"flowtype/define-flow-type": 1, | ||
"flowtype/delimiter-dangle": [2, "never"], | ||
"flowtype/generic-spacing": [2, "never"], | ||
"flowtype/no-primitive-constructor-types": 2, | ||
"flowtype/no-weak-types": 1, | ||
"flowtype/object-type-delimiter": [2, "comma"], | ||
"flowtype/require-parameter-type": 0, | ||
"flowtype/require-return-type": 0, | ||
"flowtype/require-valid-file-annotation": 0, | ||
"flowtype/semi": [2, "always"], | ||
"flowtype/space-after-type-colon": [2, "always"], | ||
"flowtype/space-before-generic-bracket": [2, "never"], | ||
"flowtype/space-before-type-colon": [2, "never"], | ||
"flowtype/union-intersection-spacing": [2, "always"], | ||
"flowtype/use-flow-type": 2, | ||
"flowtype/valid-syntax": 2, | ||
"flowtype-errors/show-errors": 2 | ||
"flowtype/boolean-style": ["error", "boolean"], | ||
"flowtype/define-flow-type": "warn", | ||
"flowtype/delimiter-dangle": ["error", "never"], | ||
"flowtype/generic-spacing": ["error", "never"], | ||
"flowtype/no-primitive-constructor-types": "error", | ||
"flowtype/no-weak-types": "warn", | ||
"flowtype/object-type-delimiter": ["error", "comma"], | ||
"flowtype/require-parameter-type": "off", | ||
"flowtype/require-return-type": "off", | ||
"flowtype/require-valid-file-annotation": "off", | ||
"flowtype/semi": ["error", "always"], | ||
"flowtype/space-after-type-colon": ["error", "always"], | ||
"flowtype/space-before-generic-bracket": ["error", "never"], | ||
"flowtype/space-before-type-colon": ["error", "never"], | ||
"flowtype/union-intersection-spacing": ["error", "always"], | ||
"flowtype/use-flow-type": "error", | ||
"flowtype/valid-syntax": "error" | ||
} | ||
} |
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 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 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
Oops, something went wrong.