Skip to content

Commit

Permalink
Path ExecAuth: replace shelljs with child_process
Browse files Browse the repository at this point in the history
Update Babel from 6.x.x to 7.5.5
Update Cypress to 3.4.0
Update @kubernetes/client-node
  • Loading branch information
proAlexandr committed Jul 20, 2019
1 parent ddf63d7 commit bcfafd1
Show file tree
Hide file tree
Showing 23 changed files with 1,645 additions and 1,192 deletions.
37 changes: 0 additions & 37 deletions .babelrc

This file was deleted.

2 changes: 1 addition & 1 deletion .electron-vue/webpack.web.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ let webConfig = {
path.resolve(__dirname, 'web-stubs/default.js')
),
new webpack.NormalModuleReplacementPlugin(
/k8s-port-forwarding-patch/,
/(k8s-port-forwarding-patch)|(k8s-exec-auth-path)/,
path.resolve(__dirname, 'web-stubs/default.js')
),
new webpack.NormalModuleReplacementPlugin(/^electron$/, path.resolve(__dirname, 'web-stubs/electron.js')),
Expand Down
33 changes: 33 additions & 0 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
module.exports = function(api) {
api.cache(true)

return {
'comments': false,
'env': {
'test': {
'presets': [
['@babel/preset-env', { 'targets': { 'node': 10 } }]
]
},
'main': {
'presets': [
['@babel/preset-env', { 'targets': { 'node': 10 } }]
]
},
'renderer': {
'presets': [
['@babel/preset-env', { 'modules': false, 'targets': { 'chrome': 73 } }]
]
},
'web': {
// TODO, require configuration after updating to Babel 7.
'presets': [
['@babel/preset-env', { 'modules': false, 'targets': { 'chrome': 73 } }]
]
}
},
'plugins': [
['@babel/plugin-transform-runtime', { 'corejs': 2 }]
]
}
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

This file was deleted.

This file was deleted.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit bcfafd1

Please sign in to comment.