piral-cli 0.15.0-alpha.3975 → 0.15.0-alpha.4005
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/external/index.js +69 -2
- package/package.json +2 -2
package/lib/external/index.js
CHANGED
|
@@ -49833,7 +49833,7 @@ const ITERATOR = doIter && Symbol.iterator
|
|
|
49833
49833
|
// or Buffer.alloc, and Buffer in node 10 deprecated the ctor.
|
|
49834
49834
|
// .M, this is fine .\^/M..
|
|
49835
49835
|
const B = Buffer.alloc ? Buffer
|
|
49836
|
-
: /* istanbul ignore next */ __webpack_require__(
|
|
49836
|
+
: /* istanbul ignore next */ __webpack_require__(921).Buffer
|
|
49837
49837
|
|
|
49838
49838
|
// events that mean 'the stream is over'
|
|
49839
49839
|
// these are treated specially, and re-emitted
|
|
@@ -59712,7 +59712,74 @@ module.exports = function isAbsoluteURL(url) {
|
|
|
59712
59712
|
/* 918 */,
|
|
59713
59713
|
/* 919 */,
|
|
59714
59714
|
/* 920 */,
|
|
59715
|
-
/* 921
|
|
59715
|
+
/* 921 */
|
|
59716
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
59717
|
+
|
|
59718
|
+
/* eslint-disable node/no-deprecated-api */
|
|
59719
|
+
var buffer = __webpack_require__(293)
|
|
59720
|
+
var Buffer = buffer.Buffer
|
|
59721
|
+
|
|
59722
|
+
// alternative to using Object.keys for old browsers
|
|
59723
|
+
function copyProps (src, dst) {
|
|
59724
|
+
for (var key in src) {
|
|
59725
|
+
dst[key] = src[key]
|
|
59726
|
+
}
|
|
59727
|
+
}
|
|
59728
|
+
if (Buffer.from && Buffer.alloc && Buffer.allocUnsafe && Buffer.allocUnsafeSlow) {
|
|
59729
|
+
module.exports = buffer
|
|
59730
|
+
} else {
|
|
59731
|
+
// Copy properties from require('buffer')
|
|
59732
|
+
copyProps(buffer, exports)
|
|
59733
|
+
exports.Buffer = SafeBuffer
|
|
59734
|
+
}
|
|
59735
|
+
|
|
59736
|
+
function SafeBuffer (arg, encodingOrOffset, length) {
|
|
59737
|
+
return Buffer(arg, encodingOrOffset, length)
|
|
59738
|
+
}
|
|
59739
|
+
|
|
59740
|
+
// Copy static methods from Buffer
|
|
59741
|
+
copyProps(Buffer, SafeBuffer)
|
|
59742
|
+
|
|
59743
|
+
SafeBuffer.from = function (arg, encodingOrOffset, length) {
|
|
59744
|
+
if (typeof arg === 'number') {
|
|
59745
|
+
throw new TypeError('Argument must not be a number')
|
|
59746
|
+
}
|
|
59747
|
+
return Buffer(arg, encodingOrOffset, length)
|
|
59748
|
+
}
|
|
59749
|
+
|
|
59750
|
+
SafeBuffer.alloc = function (size, fill, encoding) {
|
|
59751
|
+
if (typeof size !== 'number') {
|
|
59752
|
+
throw new TypeError('Argument must be a number')
|
|
59753
|
+
}
|
|
59754
|
+
var buf = Buffer(size)
|
|
59755
|
+
if (fill !== undefined) {
|
|
59756
|
+
if (typeof encoding === 'string') {
|
|
59757
|
+
buf.fill(fill, encoding)
|
|
59758
|
+
} else {
|
|
59759
|
+
buf.fill(fill)
|
|
59760
|
+
}
|
|
59761
|
+
} else {
|
|
59762
|
+
buf.fill(0)
|
|
59763
|
+
}
|
|
59764
|
+
return buf
|
|
59765
|
+
}
|
|
59766
|
+
|
|
59767
|
+
SafeBuffer.allocUnsafe = function (size) {
|
|
59768
|
+
if (typeof size !== 'number') {
|
|
59769
|
+
throw new TypeError('Argument must be a number')
|
|
59770
|
+
}
|
|
59771
|
+
return Buffer(size)
|
|
59772
|
+
}
|
|
59773
|
+
|
|
59774
|
+
SafeBuffer.allocUnsafeSlow = function (size) {
|
|
59775
|
+
if (typeof size !== 'number') {
|
|
59776
|
+
throw new TypeError('Argument must be a number')
|
|
59777
|
+
}
|
|
59778
|
+
return buffer.SlowBuffer(size)
|
|
59779
|
+
}
|
|
59780
|
+
|
|
59781
|
+
|
|
59782
|
+
/***/ }),
|
|
59716
59783
|
/* 922 */
|
|
59717
59784
|
/***/ (function(module, __unusedexports, __webpack_require__) {
|
|
59718
59785
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "piral-cli",
|
|
3
|
-
"version": "0.15.0-alpha.
|
|
3
|
+
"version": "0.15.0-alpha.4005",
|
|
4
4
|
"description": "The standard CLI for creating and building a Piral instance or a Pilet.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"portal",
|
|
@@ -78,5 +78,5 @@
|
|
|
78
78
|
"typescript": "^4.0.2",
|
|
79
79
|
"yargs": "^15.4.1"
|
|
80
80
|
},
|
|
81
|
-
"gitHead": "
|
|
81
|
+
"gitHead": "612f2072dea6b5d02e3672be3972e850ae95d446"
|
|
82
82
|
}
|