-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactor dev and fix bugs #27
Conversation
build/lib/ipfs/publish.js
Outdated
var _ref = _asyncToGenerator( | ||
/*#__PURE__*/ | ||
regeneratorRuntime.mark(function _callee(yargs, targetPath) { | ||
var kaizenConfig, ipfs, files, hashes, hash, iphsUrl; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
iphsUrl typo, please change to ipfsUrl
build/lib/ipfs/publish.js
Outdated
case 8: | ||
hashes = _context.sent; | ||
hash = hashes[hashes.length - 1].hash; | ||
iphsUrl = "https://ipfs.infura.io/ipfs/".concat(hash); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
iphsUrl typo, please change to ipfsUrl
build/lib/ipfs/publish.js
Outdated
hashes = _context.sent; | ||
hash = hashes[hashes.length - 1].hash; | ||
iphsUrl = "https://ipfs.infura.io/ipfs/".concat(hash); | ||
openBrowser(iphsUrl); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
iphsUrl typo, please change to ipfsUrl
build/lib/ipfs/publish.js
Outdated
hash = hashes[hashes.length - 1].hash; | ||
iphsUrl = "https://ipfs.infura.io/ipfs/".concat(hash); | ||
openBrowser(iphsUrl); | ||
Log.SuccessLog("ipfs url => ".concat(iphsUrl)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
iphsUrl typo, please change to ipfsUrl
build/lib/plugin/remove.js
Outdated
break; | ||
|
||
case 'bluzelle': | ||
removeBluzelle(configPath, kaizenConfig, ['pn-vue-bluzelle', 'pn-react-bluzelle', 'pn-vue-bluzelle']); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Have two 'pn-vue-bluzelle'
src/lib/plugin/remove.js
Outdated
removeNOIA(configPath, kaizenConfig, ['NOIA']); | ||
break; | ||
case 'bluzelle': | ||
removeBluzelle(configPath, kaizenConfig, ['pn-vue-bluzelle', 'pn-react-bluzelle', 'pn-vue-bluzelle']); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Duplicate 'pn-vue-bluzelle'
bugs fixed
compatibility