piral-cli 0.15.0-alpha.3905 → 0.15.0-alpha.3933
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 +74 -74
- package/package.json +2 -2
package/lib/external/index.js
CHANGED
|
@@ -1274,7 +1274,77 @@ const mtimeFilter = opt => {
|
|
|
1274
1274
|
|
|
1275
1275
|
|
|
1276
1276
|
/***/ }),
|
|
1277
|
-
/* 32
|
|
1277
|
+
/* 32 */
|
|
1278
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
1279
|
+
|
|
1280
|
+
/*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
|
1281
|
+
/* eslint-disable node/no-deprecated-api */
|
|
1282
|
+
var buffer = __webpack_require__(293)
|
|
1283
|
+
var Buffer = buffer.Buffer
|
|
1284
|
+
|
|
1285
|
+
// alternative to using Object.keys for old browsers
|
|
1286
|
+
function copyProps (src, dst) {
|
|
1287
|
+
for (var key in src) {
|
|
1288
|
+
dst[key] = src[key]
|
|
1289
|
+
}
|
|
1290
|
+
}
|
|
1291
|
+
if (Buffer.from && Buffer.alloc && Buffer.allocUnsafe && Buffer.allocUnsafeSlow) {
|
|
1292
|
+
module.exports = buffer
|
|
1293
|
+
} else {
|
|
1294
|
+
// Copy properties from require('buffer')
|
|
1295
|
+
copyProps(buffer, exports)
|
|
1296
|
+
exports.Buffer = SafeBuffer
|
|
1297
|
+
}
|
|
1298
|
+
|
|
1299
|
+
function SafeBuffer (arg, encodingOrOffset, length) {
|
|
1300
|
+
return Buffer(arg, encodingOrOffset, length)
|
|
1301
|
+
}
|
|
1302
|
+
|
|
1303
|
+
SafeBuffer.prototype = Object.create(Buffer.prototype)
|
|
1304
|
+
|
|
1305
|
+
// Copy static methods from Buffer
|
|
1306
|
+
copyProps(Buffer, SafeBuffer)
|
|
1307
|
+
|
|
1308
|
+
SafeBuffer.from = function (arg, encodingOrOffset, length) {
|
|
1309
|
+
if (typeof arg === 'number') {
|
|
1310
|
+
throw new TypeError('Argument must not be a number')
|
|
1311
|
+
}
|
|
1312
|
+
return Buffer(arg, encodingOrOffset, length)
|
|
1313
|
+
}
|
|
1314
|
+
|
|
1315
|
+
SafeBuffer.alloc = function (size, fill, encoding) {
|
|
1316
|
+
if (typeof size !== 'number') {
|
|
1317
|
+
throw new TypeError('Argument must be a number')
|
|
1318
|
+
}
|
|
1319
|
+
var buf = Buffer(size)
|
|
1320
|
+
if (fill !== undefined) {
|
|
1321
|
+
if (typeof encoding === 'string') {
|
|
1322
|
+
buf.fill(fill, encoding)
|
|
1323
|
+
} else {
|
|
1324
|
+
buf.fill(fill)
|
|
1325
|
+
}
|
|
1326
|
+
} else {
|
|
1327
|
+
buf.fill(0)
|
|
1328
|
+
}
|
|
1329
|
+
return buf
|
|
1330
|
+
}
|
|
1331
|
+
|
|
1332
|
+
SafeBuffer.allocUnsafe = function (size) {
|
|
1333
|
+
if (typeof size !== 'number') {
|
|
1334
|
+
throw new TypeError('Argument must be a number')
|
|
1335
|
+
}
|
|
1336
|
+
return Buffer(size)
|
|
1337
|
+
}
|
|
1338
|
+
|
|
1339
|
+
SafeBuffer.allocUnsafeSlow = function (size) {
|
|
1340
|
+
if (typeof size !== 'number') {
|
|
1341
|
+
throw new TypeError('Argument must be a number')
|
|
1342
|
+
}
|
|
1343
|
+
return buffer.SlowBuffer(size)
|
|
1344
|
+
}
|
|
1345
|
+
|
|
1346
|
+
|
|
1347
|
+
/***/ }),
|
|
1278
1348
|
/* 33 */
|
|
1279
1349
|
/***/ (function(__unusedmodule, exports) {
|
|
1280
1350
|
|
|
@@ -40045,7 +40115,7 @@ module.exports = (fn, opts) => {
|
|
|
40045
40115
|
let B = Buffer
|
|
40046
40116
|
/* istanbul ignore next */
|
|
40047
40117
|
if (!B.alloc) {
|
|
40048
|
-
B = __webpack_require__(
|
|
40118
|
+
B = __webpack_require__(32).Buffer
|
|
40049
40119
|
}
|
|
40050
40120
|
module.exports = B
|
|
40051
40121
|
|
|
@@ -49763,7 +49833,7 @@ const ITERATOR = doIter && Symbol.iterator
|
|
|
49763
49833
|
// or Buffer.alloc, and Buffer in node 10 deprecated the ctor.
|
|
49764
49834
|
// .M, this is fine .\^/M..
|
|
49765
49835
|
const B = Buffer.alloc ? Buffer
|
|
49766
|
-
: /* istanbul ignore next */ __webpack_require__(
|
|
49836
|
+
: /* istanbul ignore next */ __webpack_require__(32).Buffer
|
|
49767
49837
|
|
|
49768
49838
|
// events that mean 'the stream is over'
|
|
49769
49839
|
// these are treated specially, and re-emitted
|
|
@@ -58846,77 +58916,7 @@ exports.subscribeToArray = function (array) { return function (subscriber) {
|
|
|
58846
58916
|
|
|
58847
58917
|
/***/ }),
|
|
58848
58918
|
/* 890 */,
|
|
58849
|
-
/* 891
|
|
58850
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
58851
|
-
|
|
58852
|
-
/*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
|
58853
|
-
/* eslint-disable node/no-deprecated-api */
|
|
58854
|
-
var buffer = __webpack_require__(293)
|
|
58855
|
-
var Buffer = buffer.Buffer
|
|
58856
|
-
|
|
58857
|
-
// alternative to using Object.keys for old browsers
|
|
58858
|
-
function copyProps (src, dst) {
|
|
58859
|
-
for (var key in src) {
|
|
58860
|
-
dst[key] = src[key]
|
|
58861
|
-
}
|
|
58862
|
-
}
|
|
58863
|
-
if (Buffer.from && Buffer.alloc && Buffer.allocUnsafe && Buffer.allocUnsafeSlow) {
|
|
58864
|
-
module.exports = buffer
|
|
58865
|
-
} else {
|
|
58866
|
-
// Copy properties from require('buffer')
|
|
58867
|
-
copyProps(buffer, exports)
|
|
58868
|
-
exports.Buffer = SafeBuffer
|
|
58869
|
-
}
|
|
58870
|
-
|
|
58871
|
-
function SafeBuffer (arg, encodingOrOffset, length) {
|
|
58872
|
-
return Buffer(arg, encodingOrOffset, length)
|
|
58873
|
-
}
|
|
58874
|
-
|
|
58875
|
-
SafeBuffer.prototype = Object.create(Buffer.prototype)
|
|
58876
|
-
|
|
58877
|
-
// Copy static methods from Buffer
|
|
58878
|
-
copyProps(Buffer, SafeBuffer)
|
|
58879
|
-
|
|
58880
|
-
SafeBuffer.from = function (arg, encodingOrOffset, length) {
|
|
58881
|
-
if (typeof arg === 'number') {
|
|
58882
|
-
throw new TypeError('Argument must not be a number')
|
|
58883
|
-
}
|
|
58884
|
-
return Buffer(arg, encodingOrOffset, length)
|
|
58885
|
-
}
|
|
58886
|
-
|
|
58887
|
-
SafeBuffer.alloc = function (size, fill, encoding) {
|
|
58888
|
-
if (typeof size !== 'number') {
|
|
58889
|
-
throw new TypeError('Argument must be a number')
|
|
58890
|
-
}
|
|
58891
|
-
var buf = Buffer(size)
|
|
58892
|
-
if (fill !== undefined) {
|
|
58893
|
-
if (typeof encoding === 'string') {
|
|
58894
|
-
buf.fill(fill, encoding)
|
|
58895
|
-
} else {
|
|
58896
|
-
buf.fill(fill)
|
|
58897
|
-
}
|
|
58898
|
-
} else {
|
|
58899
|
-
buf.fill(0)
|
|
58900
|
-
}
|
|
58901
|
-
return buf
|
|
58902
|
-
}
|
|
58903
|
-
|
|
58904
|
-
SafeBuffer.allocUnsafe = function (size) {
|
|
58905
|
-
if (typeof size !== 'number') {
|
|
58906
|
-
throw new TypeError('Argument must be a number')
|
|
58907
|
-
}
|
|
58908
|
-
return Buffer(size)
|
|
58909
|
-
}
|
|
58910
|
-
|
|
58911
|
-
SafeBuffer.allocUnsafeSlow = function (size) {
|
|
58912
|
-
if (typeof size !== 'number') {
|
|
58913
|
-
throw new TypeError('Argument must be a number')
|
|
58914
|
-
}
|
|
58915
|
-
return buffer.SlowBuffer(size)
|
|
58916
|
-
}
|
|
58917
|
-
|
|
58918
|
-
|
|
58919
|
-
/***/ }),
|
|
58919
|
+
/* 891 */,
|
|
58920
58920
|
/* 892 */,
|
|
58921
58921
|
/* 893 */
|
|
58922
58922
|
/***/ (function(__unusedmodule, exports, __webpack_require__) {
|
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.3933",
|
|
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": "520a272d09f02543153f1d8b2ae23a3ae10acd6f"
|
|
82
82
|
}
|