forked from Netflix-Skunkworks/stethoscope-app
-
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.
Electron update (Netflix-Skunkworks#143)
* removed a bunch of unused dependencies, cleaned up server code. Saving app work before updating electron. * Add ES6 support to electron/node code, fixed issue with how kmd scripts are executed. Started work on application support. Cleanup * Removed unused babel ts loader * Added babel build step, moved all code into src/ directory. Fixed issue with non-English command output for screenlock * Fixed start script * made suggested changes: remove scripts.init from start, add default for platform resolver, allow global fetch name
- Loading branch information
Showing
105 changed files
with
4,989 additions
and
2,640 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 |
---|---|---|
@@ -1,4 +1,38 @@ | ||
{ | ||
"presets": ["es2015", "react"], | ||
"plugins": ["transform-object-rest-spread"] | ||
"presets": [ | ||
"@babel/preset-react", | ||
[ | ||
"@babel/preset-env", { | ||
"targets": { | ||
"node": "current" | ||
} | ||
} | ||
] | ||
], | ||
"env": { | ||
"production": { | ||
"presets": [["minify", { "builtIns": false }]] | ||
} | ||
}, | ||
"plugins": ["@babel/plugin-proposal-class-properties"], | ||
"include": [ | ||
"./server.js", | ||
"./resolvers/", | ||
"./practices/", | ||
"./sources/", | ||
"./src" | ||
], | ||
"ignore": [ | ||
"./node_modules/", | ||
"./.git/" | ||
], | ||
"exclude": [ | ||
"./.git/", | ||
"./bitlocker-status/", | ||
"./build/", | ||
"./dist/", | ||
"./docs/", | ||
"./public/", | ||
"./report/" | ||
] | ||
} |
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,2 +1,2 @@ | ||
react: npm run react:start | ||
electron: npm run electron:start | ||
react: yarn dev:react-start | ||
electron: yarn dev:electron-start |
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.