-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #193 from PhyrexTsai/master
v0.0.52
- Loading branch information
Showing
14 changed files
with
153 additions
and
4 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
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,47 @@ | ||
"use strict"; | ||
|
||
function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } } | ||
|
||
function _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); } _next(undefined); }); }; } | ||
|
||
var path = require('path'); | ||
|
||
var fsx = require('fs-extra'); | ||
|
||
var ExecuteCommand = require('../../../lib/ExecuteCommand'); | ||
|
||
module.exports = | ||
/*#__PURE__*/ | ||
_asyncToGenerator( | ||
/*#__PURE__*/ | ||
regeneratorRuntime.mark(function _callee() { | ||
var configPath, userConfig; | ||
return regeneratorRuntime.wrap(function _callee$(_context) { | ||
while (1) { | ||
switch (_context.prev = _context.next) { | ||
case 0: | ||
_context.next = 2; | ||
return ExecuteCommand('npm install arweave'); | ||
|
||
case 2: | ||
// update user's kaizen config | ||
configPath = path.resolve('./', 'kaizen.json'); | ||
userConfig = fsx.existsSync(configPath) ? fsx.readJsonSync(configPath) : {}; | ||
|
||
if (!userConfig.plugins) { | ||
userConfig.plugins = []; | ||
} | ||
|
||
if (userConfig.plugins.includes('arweave') === false) { | ||
userConfig.plugins.push('arweave'); | ||
} | ||
|
||
fsx.outputJsonSync(path.resolve('./', 'kaizen.json'), userConfig); | ||
|
||
case 7: | ||
case "end": | ||
return _context.stop(); | ||
} | ||
} | ||
}, _callee, this); | ||
})); |
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,49 @@ | ||
"use strict"; | ||
|
||
function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } } | ||
|
||
function _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); } _next(undefined); }); }; } | ||
|
||
var path = require("path"); | ||
|
||
var fsx = require("fs-extra"); | ||
|
||
var ExecuteCommand = require('../../../lib/ExecuteCommand'); | ||
|
||
module.exports = | ||
/*#__PURE__*/ | ||
_asyncToGenerator( | ||
/*#__PURE__*/ | ||
regeneratorRuntime.mark(function _callee() { | ||
var configPath, userConfig; | ||
return regeneratorRuntime.wrap(function _callee$(_context) { | ||
while (1) { | ||
switch (_context.prev = _context.next) { | ||
case 0: | ||
_context.next = 2; | ||
return ExecuteCommand('npm uninstall arweave'); | ||
|
||
case 2: | ||
// update user's kaizen config | ||
configPath = path.resolve('./', 'kaizen.json'); | ||
userConfig = fsx.existsSync(configPath) ? fsx.readJsonSync(configPath) : {}; | ||
|
||
if (!userConfig.plugins) { | ||
userConfig.plugins = []; | ||
} | ||
|
||
if (userConfig.plugins.includes('arweave') === false) { | ||
userConfig.plugins = userConfig.plugins.filter(function (element) { | ||
return element != 'arweave'; | ||
}); | ||
} | ||
|
||
fsx.outputJsonSync(path.resolve('./', 'kaizen.json'), userConfig); | ||
|
||
case 7: | ||
case "end": | ||
return _context.stop(); | ||
} | ||
} | ||
}, _callee, this); | ||
})); |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,6 +1,6 @@ | ||
{ | ||
"name": "kaizen-cli", | ||
"version": "0.0.51", | ||
"version": "0.0.52", | ||
"bin": { | ||
"kaizen": "kaizen" | ||
}, | ||
|
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,21 @@ | ||
const path = require('path'); | ||
const fsx = require('fs-extra'); | ||
const ExecuteCommand = require('../../../lib/ExecuteCommand'); | ||
|
||
module.exports = async function() { | ||
await ExecuteCommand('npm install arweave'); | ||
|
||
// update user's kaizen config | ||
const configPath = path.resolve('./', 'kaizen.json'); | ||
const userConfig = fsx.existsSync(configPath) ? fsx.readJsonSync(configPath) : {}; | ||
|
||
if(!userConfig.plugins) { | ||
userConfig.plugins = []; | ||
} | ||
|
||
if(userConfig.plugins.includes('arweave') === false) { | ||
userConfig.plugins.push('arweave'); | ||
} | ||
|
||
fsx.outputJsonSync(path.resolve('./', 'kaizen.json'), userConfig); | ||
} |
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,23 @@ | ||
const path = require("path"); | ||
const fsx = require("fs-extra"); | ||
const ExecuteCommand = require('../../../lib/ExecuteCommand'); | ||
|
||
module.exports = async function() { | ||
await ExecuteCommand('npm uninstall arweave'); | ||
|
||
// update user's kaizen config | ||
const configPath = path.resolve('./', 'kaizen.json'); | ||
const userConfig = fsx.existsSync(configPath) ? fsx.readJsonSync(configPath) : {}; | ||
|
||
if(!userConfig.plugins) { | ||
userConfig.plugins = []; | ||
} | ||
|
||
if(userConfig.plugins.includes('arweave') === false) { | ||
userConfig.plugins = userConfig.plugins.filter(function(element) { | ||
return element != 'arweave'; | ||
}); | ||
} | ||
|
||
fsx.outputJsonSync(path.resolve('./', 'kaizen.json'), userConfig); | ||
} |
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