autoprefixer-rails 9.4.6 → 9.4.7
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +3 -0
- data/lib/autoprefixer-rails/version.rb +1 -1
- data/vendor/autoprefixer.js +351 -295
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 90a26e0e7e7160cbbfd197e8b1daf753f5e8bf5fe9e2b656137e03784ade85ff
|
4
|
+
data.tar.gz: 9735b37c5b6cab7e67becc1fed3b6b88f46f26e706c45aef2c9909deab215a7d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e491fe8e7d99b2f4195ca9fdab985e267aa1931d67ffa01e23e734fe8ec9c90a78d40151b6a9d4f61685a4674de4758effcfae5d9eac49293bb9e5852a61a1c5
|
7
|
+
data.tar.gz: 427fbfe3376c43e9ec6b5784af6e96436e9924e7d0cbd9d1988f339e1078e3b641d9b89cfbeb0a3f20274b0fbdc7375c523b1c721c0fcd0626f98c6ea7979574
|
data/CHANGELOG.md
CHANGED
data/vendor/autoprefixer.js
CHANGED
@@ -935,7 +935,7 @@ module.exports.info = function () {
|
|
935
935
|
};
|
936
936
|
|
937
937
|
}).call(this,require('_process'))
|
938
|
-
},{"../data/prefixes":1,"./browsers":5,"./info":60,"./prefixes":64,"_process":
|
938
|
+
},{"../data/prefixes":1,"./browsers":5,"./info":60,"./prefixes":64,"_process":629,"browserslist":76,"caniuse-lite":591,"postcss":617}],4:[function(require,module,exports){
|
939
939
|
"use strict";
|
940
940
|
|
941
941
|
function last(array) {
|
@@ -9015,13 +9015,14 @@ module.exports = Prefixes;
|
|
9015
9015
|
},{"./at-rule":2,"./browsers":5,"./declaration":6,"./hacks/align-content":7,"./hacks/align-items":8,"./hacks/align-self":9,"./hacks/animation":10,"./hacks/appearance":11,"./hacks/background-clip":12,"./hacks/background-size":13,"./hacks/block-logical":14,"./hacks/border-image":15,"./hacks/border-radius":16,"./hacks/break-props":17,"./hacks/color-adjust":18,"./hacks/cross-fade":19,"./hacks/display-flex":20,"./hacks/display-grid":21,"./hacks/filter":23,"./hacks/filter-value":22,"./hacks/flex":31,"./hacks/flex-basis":24,"./hacks/flex-direction":25,"./hacks/flex-flow":26,"./hacks/flex-grow":27,"./hacks/flex-shrink":28,"./hacks/flex-wrap":30,"./hacks/fullscreen":32,"./hacks/gradient":33,"./hacks/grid-area":34,"./hacks/grid-column-align":35,"./hacks/grid-end":36,"./hacks/grid-row-align":37,"./hacks/grid-row-column":38,"./hacks/grid-rows-columns":39,"./hacks/grid-start":40,"./hacks/grid-template":42,"./hacks/grid-template-areas":41,"./hacks/image-rendering":44,"./hacks/image-set":45,"./hacks/inline-logical":46,"./hacks/intrinsic":47,"./hacks/justify-content":48,"./hacks/mask-border":49,"./hacks/order":50,"./hacks/overscroll-behavior":51,"./hacks/pixelated":52,"./hacks/place-self":53,"./hacks/placeholder":54,"./hacks/text-decoration":56,"./hacks/text-decoration-skip-ink":55,"./hacks/text-emphasis-position":57,"./hacks/transform-decl":58,"./hacks/writing-mode":59,"./processor":65,"./resolution":66,"./selector":67,"./supports":68,"./transition":69,"./utils":70,"./value":71,"postcss":617}],65:[function(require,module,exports){
|
9016
9016
|
"use strict";
|
9017
9017
|
|
9018
|
+
var parser = require('postcss-value-parser');
|
9019
|
+
|
9018
9020
|
var Value = require('./value');
|
9019
9021
|
|
9020
9022
|
var insertAreas = require('./hacks/grid-utils').insertAreas;
|
9021
9023
|
|
9022
9024
|
var OLD_LINEAR = /(^|[^-])linear-gradient\(\s*(top|left|right|bottom)/i;
|
9023
9025
|
var OLD_RADIAL = /(^|[^-])radial-gradient\(\s*\d+(\w*|%)\s+\d+(\w*|%)\s*,/i;
|
9024
|
-
var RADIAL_BLOCK = /\(((?:[^)(]+|\((?:[^)(]+|\([^)(]*\))*\))*)\)/i;
|
9025
9026
|
var IGNORE_NEXT = /(!\s*)?autoprefixer:\s*ignore\s+next/i;
|
9026
9027
|
var GRID_REGEX = /(!\s*)?autoprefixer\s*grid:\s*(on|off|(no-)?autoplace)/i;
|
9027
9028
|
var SIZES = ['width', 'height', 'min-width', 'max-width', 'min-height', 'max-height', 'inline-size', 'min-inline-size', 'max-inline-size', 'block-size', 'min-block-size', 'max-block-size'];
|
@@ -9227,17 +9228,49 @@ function () {
|
|
9227
9228
|
node: decl
|
9228
9229
|
});
|
9229
9230
|
} else {
|
9230
|
-
var
|
9231
|
-
|
9232
|
-
|
9233
|
-
|
9234
|
-
|
9235
|
-
|
9236
|
-
|
9237
|
-
|
9238
|
-
|
9239
|
-
|
9240
|
-
|
9231
|
+
var ast = parser(value);
|
9232
|
+
|
9233
|
+
for (var _iterator = ast.nodes, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : _iterator[Symbol.iterator]();;) {
|
9234
|
+
var _ref;
|
9235
|
+
|
9236
|
+
if (_isArray) {
|
9237
|
+
if (_i >= _iterator.length) break;
|
9238
|
+
_ref = _iterator[_i++];
|
9239
|
+
} else {
|
9240
|
+
_i = _iterator.next();
|
9241
|
+
if (_i.done) break;
|
9242
|
+
_ref = _i.value;
|
9243
|
+
}
|
9244
|
+
|
9245
|
+
var i = _ref;
|
9246
|
+
|
9247
|
+
if (i.type === 'function' && i.value === 'radial-gradient') {
|
9248
|
+
for (var _iterator2 = i.nodes, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : _iterator2[Symbol.iterator]();;) {
|
9249
|
+
var _ref2;
|
9250
|
+
|
9251
|
+
if (_isArray2) {
|
9252
|
+
if (_i2 >= _iterator2.length) break;
|
9253
|
+
_ref2 = _iterator2[_i2++];
|
9254
|
+
} else {
|
9255
|
+
_i2 = _iterator2.next();
|
9256
|
+
if (_i2.done) break;
|
9257
|
+
_ref2 = _i2.value;
|
9258
|
+
}
|
9259
|
+
|
9260
|
+
var word = _ref2;
|
9261
|
+
|
9262
|
+
if (word.type === 'word') {
|
9263
|
+
if (word.value === 'cover') {
|
9264
|
+
result.warn('Gradient has outdated direction syntax. ' + 'Replace `cover` to `farthest-corner`.', {
|
9265
|
+
node: decl
|
9266
|
+
});
|
9267
|
+
} else if (word.value === 'contain') {
|
9268
|
+
result.warn('Gradient has outdated direction syntax. ' + 'Replace `contain` to `closest-side`.', {
|
9269
|
+
node: decl
|
9270
|
+
});
|
9271
|
+
}
|
9272
|
+
}
|
9273
|
+
}
|
9241
9274
|
}
|
9242
9275
|
}
|
9243
9276
|
}
|
@@ -9330,19 +9363,19 @@ function () {
|
|
9330
9363
|
|
9331
9364
|
var unprefixed = _this.prefixes.unprefixed(decl.prop);
|
9332
9365
|
|
9333
|
-
for (var
|
9334
|
-
var
|
9366
|
+
for (var _iterator3 = _this.prefixes.values('add', unprefixed), _isArray3 = Array.isArray(_iterator3), _i3 = 0, _iterator3 = _isArray3 ? _iterator3 : _iterator3[Symbol.iterator]();;) {
|
9367
|
+
var _ref3;
|
9335
9368
|
|
9336
|
-
if (
|
9337
|
-
if (
|
9338
|
-
|
9369
|
+
if (_isArray3) {
|
9370
|
+
if (_i3 >= _iterator3.length) break;
|
9371
|
+
_ref3 = _iterator3[_i3++];
|
9339
9372
|
} else {
|
9340
|
-
|
9341
|
-
if (
|
9342
|
-
|
9373
|
+
_i3 = _iterator3.next();
|
9374
|
+
if (_i3.done) break;
|
9375
|
+
_ref3 = _i3.value;
|
9343
9376
|
}
|
9344
9377
|
|
9345
|
-
var value =
|
9378
|
+
var value = _ref3;
|
9346
9379
|
value.process(decl, result);
|
9347
9380
|
}
|
9348
9381
|
|
@@ -9370,16 +9403,16 @@ function () {
|
|
9370
9403
|
}); // Selectors
|
9371
9404
|
|
9372
9405
|
var _loop = function _loop() {
|
9373
|
-
if (
|
9374
|
-
if (
|
9375
|
-
|
9406
|
+
if (_isArray4) {
|
9407
|
+
if (_i4 >= _iterator4.length) return "break";
|
9408
|
+
_ref4 = _iterator4[_i4++];
|
9376
9409
|
} else {
|
9377
|
-
|
9378
|
-
if (
|
9379
|
-
|
9410
|
+
_i4 = _iterator4.next();
|
9411
|
+
if (_i4.done) return "break";
|
9412
|
+
_ref4 = _i4.value;
|
9380
9413
|
}
|
9381
9414
|
|
9382
|
-
var checker =
|
9415
|
+
var checker = _ref4;
|
9383
9416
|
css.walkRules(function (rule, i) {
|
9384
9417
|
if (checker.check(rule)) {
|
9385
9418
|
if (!_this2.disabled(rule, result)) {
|
@@ -9389,8 +9422,8 @@ function () {
|
|
9389
9422
|
});
|
9390
9423
|
};
|
9391
9424
|
|
9392
|
-
for (var
|
9393
|
-
var
|
9425
|
+
for (var _iterator4 = this.prefixes.remove.selectors, _isArray4 = Array.isArray(_iterator4), _i4 = 0, _iterator4 = _isArray4 ? _iterator4 : _iterator4[Symbol.iterator]();;) {
|
9426
|
+
var _ref4;
|
9394
9427
|
|
9395
9428
|
var _ret = _loop();
|
9396
9429
|
|
@@ -9429,19 +9462,19 @@ function () {
|
|
9429
9462
|
} // Values
|
9430
9463
|
|
9431
9464
|
|
9432
|
-
for (var
|
9433
|
-
var
|
9465
|
+
for (var _iterator5 = _this2.prefixes.values('remove', unprefixed), _isArray5 = Array.isArray(_iterator5), _i5 = 0, _iterator5 = _isArray5 ? _iterator5 : _iterator5[Symbol.iterator]();;) {
|
9466
|
+
var _ref5;
|
9434
9467
|
|
9435
|
-
if (
|
9436
|
-
if (
|
9437
|
-
|
9468
|
+
if (_isArray5) {
|
9469
|
+
if (_i5 >= _iterator5.length) break;
|
9470
|
+
_ref5 = _iterator5[_i5++];
|
9438
9471
|
} else {
|
9439
|
-
|
9440
|
-
if (
|
9441
|
-
|
9472
|
+
_i5 = _iterator5.next();
|
9473
|
+
if (_i5.done) break;
|
9474
|
+
_ref5 = _i5.value;
|
9442
9475
|
}
|
9443
9476
|
|
9444
|
-
var checker =
|
9477
|
+
var checker = _ref5;
|
9445
9478
|
|
9446
9479
|
if (!checker.check(decl.value)) {
|
9447
9480
|
continue;
|
@@ -9611,19 +9644,19 @@ function () {
|
|
9611
9644
|
;
|
9612
9645
|
|
9613
9646
|
_proto.displayType = function displayType(decl) {
|
9614
|
-
for (var
|
9615
|
-
var
|
9647
|
+
for (var _iterator6 = decl.parent.nodes, _isArray6 = Array.isArray(_iterator6), _i6 = 0, _iterator6 = _isArray6 ? _iterator6 : _iterator6[Symbol.iterator]();;) {
|
9648
|
+
var _ref6;
|
9616
9649
|
|
9617
|
-
if (
|
9618
|
-
if (
|
9619
|
-
|
9650
|
+
if (_isArray6) {
|
9651
|
+
if (_i6 >= _iterator6.length) break;
|
9652
|
+
_ref6 = _iterator6[_i6++];
|
9620
9653
|
} else {
|
9621
|
-
|
9622
|
-
if (
|
9623
|
-
|
9654
|
+
_i6 = _iterator6.next();
|
9655
|
+
if (_i6.done) break;
|
9656
|
+
_ref6 = _i6.value;
|
9624
9657
|
}
|
9625
9658
|
|
9626
|
-
var i =
|
9659
|
+
var i = _ref6;
|
9627
9660
|
|
9628
9661
|
if (i.prop !== 'display') {
|
9629
9662
|
continue;
|
@@ -9713,7 +9746,7 @@ function () {
|
|
9713
9746
|
|
9714
9747
|
module.exports = Processor;
|
9715
9748
|
|
9716
|
-
},{"./hacks/grid-utils":43,"./value":71}],66:[function(require,module,exports){
|
9749
|
+
},{"./hacks/grid-utils":43,"./value":71,"postcss-value-parser":600}],66:[function(require,module,exports){
|
9717
9750
|
"use strict";
|
9718
9751
|
|
9719
9752
|
function _defaults(obj, defaults) {
|
@@ -15610,8 +15643,9 @@ module.exports = {
|
|
15610
15643
|
"2": "0 1 2 3 5 6 7 8 9 F K H D G E A B C p J L N I O P Q R S T U V W X Y Z a b d e f g h i j k l m n o M q r s t u v w x y z BB CB"
|
15611
15644
|
},
|
15612
15645
|
E: {
|
15646
|
+
"1": "WB",
|
15613
15647
|
"2": "F K H D G E A B OB HB QB RB SB TB UB",
|
15614
|
-
"130": "C c
|
15648
|
+
"130": "C c"
|
15615
15649
|
},
|
15616
15650
|
F: {
|
15617
15651
|
"1": "0 w x y z",
|
@@ -17075,22 +17109,25 @@ module.exports = {
|
|
17075
17109
|
},
|
17076
17110
|
B: {
|
17077
17111
|
"2": "1 C p J L N",
|
17078
|
-
"
|
17112
|
+
"2114": "I"
|
17079
17113
|
},
|
17080
17114
|
C: {
|
17081
17115
|
"2": "0 1 3 dB FB F K H D G E A B C p J L N I O P Q R S T U V W X Y Z a b d e f g h i j k l m n o M q r s t u v w x y z bB VB",
|
17082
|
-
"194": "
|
17116
|
+
"194": "5 6 7 8 9",
|
17117
|
+
"322": "2 BB",
|
17118
|
+
"772": "CB DB"
|
17083
17119
|
},
|
17084
17120
|
D: {
|
17085
17121
|
"1": "IB gB LB MB NB",
|
17086
17122
|
"2": "0 1 2 3 5 6 7 8 9 F K H D G E A B C p J L N I O P Q R S T U V W X Y Z a b d e f g h i j k l m n o M q r s t u v w x y z BB CB DB",
|
17087
|
-
"
|
17123
|
+
"1090": "GB PB KB"
|
17088
17124
|
},
|
17089
17125
|
E: {
|
17090
17126
|
"2": "F K H D G E A B C OB HB QB RB SB TB UB c WB"
|
17091
17127
|
},
|
17092
17128
|
F: {
|
17093
|
-
"
|
17129
|
+
"1": "0",
|
17130
|
+
"2": "3 E B C J L N I O P Q R S T U V W X Y Z a b d e f g h i j k l m n o M q r s t u v w x y z XB YB ZB aB c EB cB AB"
|
17094
17131
|
},
|
17095
17132
|
G: {
|
17096
17133
|
"2": "4 G HB eB JB hB iB jB kB lB mB nB oB pB qB"
|
@@ -21925,7 +21962,7 @@ module.exports = {
|
|
21925
21962
|
},
|
21926
21963
|
E: {
|
21927
21964
|
"2": "F K H D G E A B OB HB QB RB SB TB UB",
|
21928
|
-
"
|
21965
|
+
"772": "C c WB"
|
21929
21966
|
},
|
21930
21967
|
F: {
|
21931
21968
|
"2": "3 E B C J L N I O P Q R S T U V W X Y Z a b d e f g h i j k l m n o M q r s t u XB YB ZB aB c EB cB AB",
|
@@ -22051,8 +22088,8 @@ module.exports = {
|
|
22051
22088
|
"2": "1 C p J L N I"
|
22052
22089
|
},
|
22053
22090
|
C: {
|
22054
|
-
"
|
22055
|
-
"
|
22091
|
+
"1": "CB DB",
|
22092
|
+
"2": "0 1 2 3 5 6 7 8 9 dB FB F K H D G E A B C p J L N I O P Q R S T U V W X Y Z a b d e f g h i j k l m n o M q r s t u v w x y z BB bB VB"
|
22056
22093
|
},
|
22057
22094
|
D: {
|
22058
22095
|
"1": "KB IB gB LB MB NB",
|
@@ -28876,7 +28913,8 @@ module.exports = {
|
|
28876
28913
|
"260": "A B"
|
28877
28914
|
},
|
28878
28915
|
B: {
|
28879
|
-
"260": "1 C p J
|
28916
|
+
"260": "1 C p J",
|
28917
|
+
"1284": "L N I"
|
28880
28918
|
},
|
28881
28919
|
C: {
|
28882
28920
|
"8": "dB FB bB VB",
|
@@ -30905,7 +30943,8 @@ module.exports = {
|
|
30905
30943
|
"2": "1 C p J L N I"
|
30906
30944
|
},
|
30907
30945
|
C: {
|
30908
|
-
"2": "0 1 2 3 5 6 7 8 9 dB FB F K H D G E A B C p J L N I O P Q R S T U V W X Y Z a b d e f g h i j k l m n o M q r s t u v w x y z BB CB
|
30946
|
+
"2": "0 1 2 3 5 6 7 8 9 dB FB F K H D G E A B C p J L N I O P Q R S T U V W X Y Z a b d e f g h i j k l m n o M q r s t u v w x y z BB CB bB VB",
|
30947
|
+
"194": "DB"
|
30909
30948
|
},
|
30910
30949
|
D: {
|
30911
30950
|
"1": "2 BB CB DB GB PB KB IB gB LB MB NB",
|
@@ -30959,7 +30998,7 @@ module.exports = {
|
|
30959
30998
|
"2": "2B"
|
30960
30999
|
}
|
30961
31000
|
},
|
30962
|
-
B:
|
31001
|
+
B: 6,
|
30963
31002
|
C: "JavaScript modules: dynamic import()"
|
30964
31003
|
};
|
30965
31004
|
|
@@ -48381,7 +48420,7 @@ module.exports = {
|
|
48381
48420
|
"1": "IB"
|
48382
48421
|
},
|
48383
48422
|
M: {
|
48384
|
-
"
|
48423
|
+
"1": "2"
|
48385
48424
|
},
|
48386
48425
|
N: {
|
48387
48426
|
"2": "A",
|
@@ -52192,7 +52231,7 @@ function unpackRegion(packed) {
|
|
52192
52231
|
"use strict";
|
52193
52232
|
|
52194
52233
|
module.exports = {
|
52195
|
-
"5.0": "
|
52234
|
+
"5.0": "72",
|
52196
52235
|
"4.0": "69",
|
52197
52236
|
"3.1": "66",
|
52198
52237
|
"3.0": "66",
|
@@ -53078,6 +53117,18 @@ module.exports=[
|
|
53078
53117
|
"version": "11.6.0",
|
53079
53118
|
"date": "2018-12-26",
|
53080
53119
|
"lts": false
|
53120
|
+
},
|
53121
|
+
{
|
53122
|
+
"name": "nodejs",
|
53123
|
+
"version": "11.7.0",
|
53124
|
+
"date": "2019-01-17",
|
53125
|
+
"lts": false
|
53126
|
+
},
|
53127
|
+
{
|
53128
|
+
"name": "nodejs",
|
53129
|
+
"version": "11.8.0",
|
53130
|
+
"date": "2019-01-24",
|
53131
|
+
"lts": false
|
53081
53132
|
}
|
53082
53133
|
]
|
53083
53134
|
},{}],596:[function(require,module,exports){
|
@@ -53571,7 +53622,7 @@ var substr = 'ab'.substr(-1) === 'b' ? function (str, start, len) {
|
|
53571
53622
|
};
|
53572
53623
|
|
53573
53624
|
}).call(this,require('_process'))
|
53574
|
-
},{"_process":
|
53625
|
+
},{"_process":629}],600:[function(require,module,exports){
|
53575
53626
|
"use strict";
|
53576
53627
|
|
53577
53628
|
var parse = require("./parse");
|
@@ -56258,7 +56309,7 @@ exports.default = _default;
|
|
56258
56309
|
module.exports = exports.default;
|
56259
56310
|
|
56260
56311
|
}).call(this,require('_process'))
|
56261
|
-
},{"./map-generator":613,"./parse":615,"./result":620,"./stringify":624,"./warn-once":627,"_process":
|
56312
|
+
},{"./map-generator":613,"./parse":615,"./result":620,"./stringify":624,"./warn-once":627,"_process":629}],612:[function(require,module,exports){
|
56262
56313
|
"use strict";
|
56263
56314
|
|
56264
56315
|
exports.__esModule = true;
|
@@ -56713,7 +56764,7 @@ exports.default = _default;
|
|
56713
56764
|
module.exports = exports.default;
|
56714
56765
|
|
56715
56766
|
}).call(this,require("buffer").Buffer)
|
56716
|
-
},{"buffer":77,"path":599,"source-map":
|
56767
|
+
},{"buffer":77,"path":599,"source-map":640}],614:[function(require,module,exports){
|
56717
56768
|
(function (process){
|
56718
56769
|
"use strict";
|
56719
56770
|
|
@@ -57328,7 +57379,7 @@ exports.default = _default;
|
|
57328
57379
|
module.exports = exports.default;
|
57329
57380
|
|
57330
57381
|
}).call(this,require('_process'))
|
57331
|
-
},{"./css-syntax-error":608,"./stringifier":623,"./stringify":624,"_process":
|
57382
|
+
},{"./css-syntax-error":608,"./stringifier":623,"./stringify":624,"_process":629}],615:[function(require,module,exports){
|
57332
57383
|
(function (process){
|
57333
57384
|
"use strict";
|
57334
57385
|
|
@@ -57375,7 +57426,7 @@ exports.default = _default;
|
|
57375
57426
|
module.exports = exports.default;
|
57376
57427
|
|
57377
57428
|
}).call(this,require('_process'))
|
57378
|
-
},{"./input":610,"./parser":616,"_process":
|
57429
|
+
},{"./input":610,"./parser":616,"_process":629}],616:[function(require,module,exports){
|
57379
57430
|
"use strict";
|
57380
57431
|
|
57381
57432
|
exports.__esModule = true;
|
@@ -58450,7 +58501,7 @@ exports.default = _default;
|
|
58450
58501
|
module.exports = exports.default;
|
58451
58502
|
|
58452
58503
|
}).call(this,require("buffer").Buffer)
|
58453
|
-
},{"buffer":77,"fs":73,"path":599,"source-map":
|
58504
|
+
},{"buffer":77,"fs":73,"path":599,"source-map":640}],619:[function(require,module,exports){
|
58454
58505
|
(function (process){
|
58455
58506
|
"use strict";
|
58456
58507
|
|
@@ -58498,7 +58549,7 @@ function () {
|
|
58498
58549
|
*/
|
58499
58550
|
|
58500
58551
|
|
58501
|
-
this.version = '7.0.
|
58552
|
+
this.version = '7.0.14';
|
58502
58553
|
/**
|
58503
58554
|
* Plugins added to this processor.
|
58504
58555
|
*
|
@@ -58722,7 +58773,7 @@ exports.default = _default;
|
|
58722
58773
|
module.exports = exports.default;
|
58723
58774
|
|
58724
58775
|
}).call(this,require('_process'))
|
58725
|
-
},{"./lazy-result":611,"_process":
|
58776
|
+
},{"./lazy-result":611,"_process":629}],620:[function(require,module,exports){
|
58726
58777
|
"use strict";
|
58727
58778
|
|
58728
58779
|
exports.__esModule = true;
|
@@ -59667,6 +59718,10 @@ function tokenizer(input, options) {
|
|
59667
59718
|
var buffer = [];
|
59668
59719
|
var returned = [];
|
59669
59720
|
|
59721
|
+
function position() {
|
59722
|
+
return pos;
|
59723
|
+
}
|
59724
|
+
|
59670
59725
|
function unclosed(what) {
|
59671
59726
|
throw input.error('Unclosed ' + what, line, pos - offset);
|
59672
59727
|
}
|
@@ -59907,7 +59962,8 @@ function tokenizer(input, options) {
|
|
59907
59962
|
return {
|
59908
59963
|
back: back,
|
59909
59964
|
nextToken: nextToken,
|
59910
|
-
endOfFile: endOfFile
|
59965
|
+
endOfFile: endOfFile,
|
59966
|
+
position: position
|
59911
59967
|
};
|
59912
59968
|
}
|
59913
59969
|
|
@@ -60123,6 +60179,218 @@ module.exports = exports.default;
|
|
60123
60179
|
},{}],629:[function(require,module,exports){
|
60124
60180
|
"use strict";
|
60125
60181
|
|
60182
|
+
// shim for using process in browser
|
60183
|
+
var process = module.exports = {}; // cached from whatever global is present so that test runners that stub it
|
60184
|
+
// don't break things. But we need to wrap it in a try catch in case it is
|
60185
|
+
// wrapped in strict mode code which doesn't define any globals. It's inside a
|
60186
|
+
// function because try/catches deoptimize in certain engines.
|
60187
|
+
|
60188
|
+
var cachedSetTimeout;
|
60189
|
+
var cachedClearTimeout;
|
60190
|
+
|
60191
|
+
function defaultSetTimout() {
|
60192
|
+
throw new Error('setTimeout has not been defined');
|
60193
|
+
}
|
60194
|
+
|
60195
|
+
function defaultClearTimeout() {
|
60196
|
+
throw new Error('clearTimeout has not been defined');
|
60197
|
+
}
|
60198
|
+
|
60199
|
+
(function () {
|
60200
|
+
try {
|
60201
|
+
if (typeof setTimeout === 'function') {
|
60202
|
+
cachedSetTimeout = setTimeout;
|
60203
|
+
} else {
|
60204
|
+
cachedSetTimeout = defaultSetTimout;
|
60205
|
+
}
|
60206
|
+
} catch (e) {
|
60207
|
+
cachedSetTimeout = defaultSetTimout;
|
60208
|
+
}
|
60209
|
+
|
60210
|
+
try {
|
60211
|
+
if (typeof clearTimeout === 'function') {
|
60212
|
+
cachedClearTimeout = clearTimeout;
|
60213
|
+
} else {
|
60214
|
+
cachedClearTimeout = defaultClearTimeout;
|
60215
|
+
}
|
60216
|
+
} catch (e) {
|
60217
|
+
cachedClearTimeout = defaultClearTimeout;
|
60218
|
+
}
|
60219
|
+
})();
|
60220
|
+
|
60221
|
+
function runTimeout(fun) {
|
60222
|
+
if (cachedSetTimeout === setTimeout) {
|
60223
|
+
//normal enviroments in sane situations
|
60224
|
+
return setTimeout(fun, 0);
|
60225
|
+
} // if setTimeout wasn't available but was latter defined
|
60226
|
+
|
60227
|
+
|
60228
|
+
if ((cachedSetTimeout === defaultSetTimout || !cachedSetTimeout) && setTimeout) {
|
60229
|
+
cachedSetTimeout = setTimeout;
|
60230
|
+
return setTimeout(fun, 0);
|
60231
|
+
}
|
60232
|
+
|
60233
|
+
try {
|
60234
|
+
// when when somebody has screwed with setTimeout but no I.E. maddness
|
60235
|
+
return cachedSetTimeout(fun, 0);
|
60236
|
+
} catch (e) {
|
60237
|
+
try {
|
60238
|
+
// When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally
|
60239
|
+
return cachedSetTimeout.call(null, fun, 0);
|
60240
|
+
} catch (e) {
|
60241
|
+
// same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error
|
60242
|
+
return cachedSetTimeout.call(this, fun, 0);
|
60243
|
+
}
|
60244
|
+
}
|
60245
|
+
}
|
60246
|
+
|
60247
|
+
function runClearTimeout(marker) {
|
60248
|
+
if (cachedClearTimeout === clearTimeout) {
|
60249
|
+
//normal enviroments in sane situations
|
60250
|
+
return clearTimeout(marker);
|
60251
|
+
} // if clearTimeout wasn't available but was latter defined
|
60252
|
+
|
60253
|
+
|
60254
|
+
if ((cachedClearTimeout === defaultClearTimeout || !cachedClearTimeout) && clearTimeout) {
|
60255
|
+
cachedClearTimeout = clearTimeout;
|
60256
|
+
return clearTimeout(marker);
|
60257
|
+
}
|
60258
|
+
|
60259
|
+
try {
|
60260
|
+
// when when somebody has screwed with setTimeout but no I.E. maddness
|
60261
|
+
return cachedClearTimeout(marker);
|
60262
|
+
} catch (e) {
|
60263
|
+
try {
|
60264
|
+
// When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally
|
60265
|
+
return cachedClearTimeout.call(null, marker);
|
60266
|
+
} catch (e) {
|
60267
|
+
// same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error.
|
60268
|
+
// Some versions of I.E. have different rules for clearTimeout vs setTimeout
|
60269
|
+
return cachedClearTimeout.call(this, marker);
|
60270
|
+
}
|
60271
|
+
}
|
60272
|
+
}
|
60273
|
+
|
60274
|
+
var queue = [];
|
60275
|
+
var draining = false;
|
60276
|
+
var currentQueue;
|
60277
|
+
var queueIndex = -1;
|
60278
|
+
|
60279
|
+
function cleanUpNextTick() {
|
60280
|
+
if (!draining || !currentQueue) {
|
60281
|
+
return;
|
60282
|
+
}
|
60283
|
+
|
60284
|
+
draining = false;
|
60285
|
+
|
60286
|
+
if (currentQueue.length) {
|
60287
|
+
queue = currentQueue.concat(queue);
|
60288
|
+
} else {
|
60289
|
+
queueIndex = -1;
|
60290
|
+
}
|
60291
|
+
|
60292
|
+
if (queue.length) {
|
60293
|
+
drainQueue();
|
60294
|
+
}
|
60295
|
+
}
|
60296
|
+
|
60297
|
+
function drainQueue() {
|
60298
|
+
if (draining) {
|
60299
|
+
return;
|
60300
|
+
}
|
60301
|
+
|
60302
|
+
var timeout = runTimeout(cleanUpNextTick);
|
60303
|
+
draining = true;
|
60304
|
+
var len = queue.length;
|
60305
|
+
|
60306
|
+
while (len) {
|
60307
|
+
currentQueue = queue;
|
60308
|
+
queue = [];
|
60309
|
+
|
60310
|
+
while (++queueIndex < len) {
|
60311
|
+
if (currentQueue) {
|
60312
|
+
currentQueue[queueIndex].run();
|
60313
|
+
}
|
60314
|
+
}
|
60315
|
+
|
60316
|
+
queueIndex = -1;
|
60317
|
+
len = queue.length;
|
60318
|
+
}
|
60319
|
+
|
60320
|
+
currentQueue = null;
|
60321
|
+
draining = false;
|
60322
|
+
runClearTimeout(timeout);
|
60323
|
+
}
|
60324
|
+
|
60325
|
+
process.nextTick = function (fun) {
|
60326
|
+
var args = new Array(arguments.length - 1);
|
60327
|
+
|
60328
|
+
if (arguments.length > 1) {
|
60329
|
+
for (var i = 1; i < arguments.length; i++) {
|
60330
|
+
args[i - 1] = arguments[i];
|
60331
|
+
}
|
60332
|
+
}
|
60333
|
+
|
60334
|
+
queue.push(new Item(fun, args));
|
60335
|
+
|
60336
|
+
if (queue.length === 1 && !draining) {
|
60337
|
+
runTimeout(drainQueue);
|
60338
|
+
}
|
60339
|
+
}; // v8 likes predictible objects
|
60340
|
+
|
60341
|
+
|
60342
|
+
function Item(fun, array) {
|
60343
|
+
this.fun = fun;
|
60344
|
+
this.array = array;
|
60345
|
+
}
|
60346
|
+
|
60347
|
+
Item.prototype.run = function () {
|
60348
|
+
this.fun.apply(null, this.array);
|
60349
|
+
};
|
60350
|
+
|
60351
|
+
process.title = 'browser';
|
60352
|
+
process.browser = true;
|
60353
|
+
process.env = {};
|
60354
|
+
process.argv = [];
|
60355
|
+
process.version = ''; // empty string to avoid regexp issues
|
60356
|
+
|
60357
|
+
process.versions = {};
|
60358
|
+
|
60359
|
+
function noop() {}
|
60360
|
+
|
60361
|
+
process.on = noop;
|
60362
|
+
process.addListener = noop;
|
60363
|
+
process.once = noop;
|
60364
|
+
process.off = noop;
|
60365
|
+
process.removeListener = noop;
|
60366
|
+
process.removeAllListeners = noop;
|
60367
|
+
process.emit = noop;
|
60368
|
+
process.prependListener = noop;
|
60369
|
+
process.prependOnceListener = noop;
|
60370
|
+
|
60371
|
+
process.listeners = function (name) {
|
60372
|
+
return [];
|
60373
|
+
};
|
60374
|
+
|
60375
|
+
process.binding = function (name) {
|
60376
|
+
throw new Error('process.binding is not supported');
|
60377
|
+
};
|
60378
|
+
|
60379
|
+
process.cwd = function () {
|
60380
|
+
return '/';
|
60381
|
+
};
|
60382
|
+
|
60383
|
+
process.chdir = function (dir) {
|
60384
|
+
throw new Error('process.chdir is not supported');
|
60385
|
+
};
|
60386
|
+
|
60387
|
+
process.umask = function () {
|
60388
|
+
return 0;
|
60389
|
+
};
|
60390
|
+
|
60391
|
+
},{}],630:[function(require,module,exports){
|
60392
|
+
"use strict";
|
60393
|
+
|
60126
60394
|
/* -*- Mode: js; js-indent-level: 2; -*- */
|
60127
60395
|
|
60128
60396
|
/*
|
@@ -60260,7 +60528,7 @@ ArraySet.prototype.toArray = function ArraySet_toArray() {
|
|
60260
60528
|
|
60261
60529
|
exports.ArraySet = ArraySet;
|
60262
60530
|
|
60263
|
-
},{"./util":
|
60531
|
+
},{"./util":639}],631:[function(require,module,exports){
|
60264
60532
|
"use strict";
|
60265
60533
|
|
60266
60534
|
/* -*- Mode: js; js-indent-level: 2; -*- */
|
@@ -60401,7 +60669,7 @@ exports.decode = function base64VLQ_decode(aStr, aIndex, aOutParam) {
|
|
60401
60669
|
aOutParam.rest = aIndex;
|
60402
60670
|
};
|
60403
60671
|
|
60404
|
-
},{"./base64":
|
60672
|
+
},{"./base64":632}],632:[function(require,module,exports){
|
60405
60673
|
"use strict";
|
60406
60674
|
|
60407
60675
|
/* -*- Mode: js; js-indent-level: 2; -*- */
|
@@ -60477,7 +60745,7 @@ exports.decode = function (charCode) {
|
|
60477
60745
|
return -1;
|
60478
60746
|
};
|
60479
60747
|
|
60480
|
-
},{}],
|
60748
|
+
},{}],633:[function(require,module,exports){
|
60481
60749
|
"use strict";
|
60482
60750
|
|
60483
60751
|
/* -*- Mode: js; js-indent-level: 2; -*- */
|
@@ -60593,7 +60861,7 @@ exports.search = function search(aNeedle, aHaystack, aCompare, aBias) {
|
|
60593
60861
|
return index;
|
60594
60862
|
};
|
60595
60863
|
|
60596
|
-
},{}],
|
60864
|
+
},{}],634:[function(require,module,exports){
|
60597
60865
|
"use strict";
|
60598
60866
|
|
60599
60867
|
/* -*- Mode: js; js-indent-level: 2; -*- */
|
@@ -60686,7 +60954,7 @@ MappingList.prototype.toArray = function MappingList_toArray() {
|
|
60686
60954
|
|
60687
60955
|
exports.MappingList = MappingList;
|
60688
60956
|
|
60689
|
-
},{"./util":
|
60957
|
+
},{"./util":639}],635:[function(require,module,exports){
|
60690
60958
|
"use strict";
|
60691
60959
|
|
60692
60960
|
/* -*- Mode: js; js-indent-level: 2; -*- */
|
@@ -60801,7 +61069,7 @@ exports.quickSort = function (ary, comparator) {
|
|
60801
61069
|
doQuickSort(ary, comparator, 0, ary.length - 1);
|
60802
61070
|
};
|
60803
61071
|
|
60804
|
-
},{}],
|
61072
|
+
},{}],636:[function(require,module,exports){
|
60805
61073
|
"use strict";
|
60806
61074
|
|
60807
61075
|
/* -*- Mode: js; js-indent-level: 2; -*- */
|
@@ -61912,7 +62180,7 @@ IndexedSourceMapConsumer.prototype._parseMappings = function IndexedSourceMapCon
|
|
61912
62180
|
|
61913
62181
|
exports.IndexedSourceMapConsumer = IndexedSourceMapConsumer;
|
61914
62182
|
|
61915
|
-
},{"./array-set":
|
62183
|
+
},{"./array-set":630,"./base64-vlq":631,"./binary-search":633,"./quick-sort":635,"./util":639}],637:[function(require,module,exports){
|
61916
62184
|
"use strict";
|
61917
62185
|
|
61918
62186
|
/* -*- Mode: js; js-indent-level: 2; -*- */
|
@@ -62347,7 +62615,7 @@ SourceMapGenerator.prototype.toString = function SourceMapGenerator_toString() {
|
|
62347
62615
|
|
62348
62616
|
exports.SourceMapGenerator = SourceMapGenerator;
|
62349
62617
|
|
62350
|
-
},{"./array-set":
|
62618
|
+
},{"./array-set":630,"./base64-vlq":631,"./mapping-list":634,"./util":639}],638:[function(require,module,exports){
|
62351
62619
|
"use strict";
|
62352
62620
|
|
62353
62621
|
/* -*- Mode: js; js-indent-level: 2; -*- */
|
@@ -62766,7 +63034,7 @@ SourceNode.prototype.toStringWithSourceMap = function SourceNode_toStringWithSou
|
|
62766
63034
|
|
62767
63035
|
exports.SourceNode = SourceNode;
|
62768
63036
|
|
62769
|
-
},{"./source-map-generator":
|
63037
|
+
},{"./source-map-generator":637,"./util":639}],639:[function(require,module,exports){
|
62770
63038
|
"use strict";
|
62771
63039
|
|
62772
63040
|
/* -*- Mode: js; js-indent-level: 2; -*- */
|
@@ -63329,7 +63597,7 @@ function computeSourceURL(sourceRoot, sourceURL, sourceMapURL) {
|
|
63329
63597
|
|
63330
63598
|
exports.computeSourceURL = computeSourceURL;
|
63331
63599
|
|
63332
|
-
},{}],
|
63600
|
+
},{}],640:[function(require,module,exports){
|
63333
63601
|
"use strict";
|
63334
63602
|
|
63335
63603
|
/*
|
@@ -63341,217 +63609,5 @@ exports.SourceMapGenerator = require('./lib/source-map-generator').SourceMapGene
|
|
63341
63609
|
exports.SourceMapConsumer = require('./lib/source-map-consumer').SourceMapConsumer;
|
63342
63610
|
exports.SourceNode = require('./lib/source-node').SourceNode;
|
63343
63611
|
|
63344
|
-
},{"./lib/source-map-consumer":
|
63345
|
-
"use strict";
|
63346
|
-
|
63347
|
-
// shim for using process in browser
|
63348
|
-
var process = module.exports = {}; // cached from whatever global is present so that test runners that stub it
|
63349
|
-
// don't break things. But we need to wrap it in a try catch in case it is
|
63350
|
-
// wrapped in strict mode code which doesn't define any globals. It's inside a
|
63351
|
-
// function because try/catches deoptimize in certain engines.
|
63352
|
-
|
63353
|
-
var cachedSetTimeout;
|
63354
|
-
var cachedClearTimeout;
|
63355
|
-
|
63356
|
-
function defaultSetTimout() {
|
63357
|
-
throw new Error('setTimeout has not been defined');
|
63358
|
-
}
|
63359
|
-
|
63360
|
-
function defaultClearTimeout() {
|
63361
|
-
throw new Error('clearTimeout has not been defined');
|
63362
|
-
}
|
63363
|
-
|
63364
|
-
(function () {
|
63365
|
-
try {
|
63366
|
-
if (typeof setTimeout === 'function') {
|
63367
|
-
cachedSetTimeout = setTimeout;
|
63368
|
-
} else {
|
63369
|
-
cachedSetTimeout = defaultSetTimout;
|
63370
|
-
}
|
63371
|
-
} catch (e) {
|
63372
|
-
cachedSetTimeout = defaultSetTimout;
|
63373
|
-
}
|
63374
|
-
|
63375
|
-
try {
|
63376
|
-
if (typeof clearTimeout === 'function') {
|
63377
|
-
cachedClearTimeout = clearTimeout;
|
63378
|
-
} else {
|
63379
|
-
cachedClearTimeout = defaultClearTimeout;
|
63380
|
-
}
|
63381
|
-
} catch (e) {
|
63382
|
-
cachedClearTimeout = defaultClearTimeout;
|
63383
|
-
}
|
63384
|
-
})();
|
63385
|
-
|
63386
|
-
function runTimeout(fun) {
|
63387
|
-
if (cachedSetTimeout === setTimeout) {
|
63388
|
-
//normal enviroments in sane situations
|
63389
|
-
return setTimeout(fun, 0);
|
63390
|
-
} // if setTimeout wasn't available but was latter defined
|
63391
|
-
|
63392
|
-
|
63393
|
-
if ((cachedSetTimeout === defaultSetTimout || !cachedSetTimeout) && setTimeout) {
|
63394
|
-
cachedSetTimeout = setTimeout;
|
63395
|
-
return setTimeout(fun, 0);
|
63396
|
-
}
|
63397
|
-
|
63398
|
-
try {
|
63399
|
-
// when when somebody has screwed with setTimeout but no I.E. maddness
|
63400
|
-
return cachedSetTimeout(fun, 0);
|
63401
|
-
} catch (e) {
|
63402
|
-
try {
|
63403
|
-
// When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally
|
63404
|
-
return cachedSetTimeout.call(null, fun, 0);
|
63405
|
-
} catch (e) {
|
63406
|
-
// same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error
|
63407
|
-
return cachedSetTimeout.call(this, fun, 0);
|
63408
|
-
}
|
63409
|
-
}
|
63410
|
-
}
|
63411
|
-
|
63412
|
-
function runClearTimeout(marker) {
|
63413
|
-
if (cachedClearTimeout === clearTimeout) {
|
63414
|
-
//normal enviroments in sane situations
|
63415
|
-
return clearTimeout(marker);
|
63416
|
-
} // if clearTimeout wasn't available but was latter defined
|
63417
|
-
|
63418
|
-
|
63419
|
-
if ((cachedClearTimeout === defaultClearTimeout || !cachedClearTimeout) && clearTimeout) {
|
63420
|
-
cachedClearTimeout = clearTimeout;
|
63421
|
-
return clearTimeout(marker);
|
63422
|
-
}
|
63423
|
-
|
63424
|
-
try {
|
63425
|
-
// when when somebody has screwed with setTimeout but no I.E. maddness
|
63426
|
-
return cachedClearTimeout(marker);
|
63427
|
-
} catch (e) {
|
63428
|
-
try {
|
63429
|
-
// When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally
|
63430
|
-
return cachedClearTimeout.call(null, marker);
|
63431
|
-
} catch (e) {
|
63432
|
-
// same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error.
|
63433
|
-
// Some versions of I.E. have different rules for clearTimeout vs setTimeout
|
63434
|
-
return cachedClearTimeout.call(this, marker);
|
63435
|
-
}
|
63436
|
-
}
|
63437
|
-
}
|
63438
|
-
|
63439
|
-
var queue = [];
|
63440
|
-
var draining = false;
|
63441
|
-
var currentQueue;
|
63442
|
-
var queueIndex = -1;
|
63443
|
-
|
63444
|
-
function cleanUpNextTick() {
|
63445
|
-
if (!draining || !currentQueue) {
|
63446
|
-
return;
|
63447
|
-
}
|
63448
|
-
|
63449
|
-
draining = false;
|
63450
|
-
|
63451
|
-
if (currentQueue.length) {
|
63452
|
-
queue = currentQueue.concat(queue);
|
63453
|
-
} else {
|
63454
|
-
queueIndex = -1;
|
63455
|
-
}
|
63456
|
-
|
63457
|
-
if (queue.length) {
|
63458
|
-
drainQueue();
|
63459
|
-
}
|
63460
|
-
}
|
63461
|
-
|
63462
|
-
function drainQueue() {
|
63463
|
-
if (draining) {
|
63464
|
-
return;
|
63465
|
-
}
|
63466
|
-
|
63467
|
-
var timeout = runTimeout(cleanUpNextTick);
|
63468
|
-
draining = true;
|
63469
|
-
var len = queue.length;
|
63470
|
-
|
63471
|
-
while (len) {
|
63472
|
-
currentQueue = queue;
|
63473
|
-
queue = [];
|
63474
|
-
|
63475
|
-
while (++queueIndex < len) {
|
63476
|
-
if (currentQueue) {
|
63477
|
-
currentQueue[queueIndex].run();
|
63478
|
-
}
|
63479
|
-
}
|
63480
|
-
|
63481
|
-
queueIndex = -1;
|
63482
|
-
len = queue.length;
|
63483
|
-
}
|
63484
|
-
|
63485
|
-
currentQueue = null;
|
63486
|
-
draining = false;
|
63487
|
-
runClearTimeout(timeout);
|
63488
|
-
}
|
63489
|
-
|
63490
|
-
process.nextTick = function (fun) {
|
63491
|
-
var args = new Array(arguments.length - 1);
|
63492
|
-
|
63493
|
-
if (arguments.length > 1) {
|
63494
|
-
for (var i = 1; i < arguments.length; i++) {
|
63495
|
-
args[i - 1] = arguments[i];
|
63496
|
-
}
|
63497
|
-
}
|
63498
|
-
|
63499
|
-
queue.push(new Item(fun, args));
|
63500
|
-
|
63501
|
-
if (queue.length === 1 && !draining) {
|
63502
|
-
runTimeout(drainQueue);
|
63503
|
-
}
|
63504
|
-
}; // v8 likes predictible objects
|
63505
|
-
|
63506
|
-
|
63507
|
-
function Item(fun, array) {
|
63508
|
-
this.fun = fun;
|
63509
|
-
this.array = array;
|
63510
|
-
}
|
63511
|
-
|
63512
|
-
Item.prototype.run = function () {
|
63513
|
-
this.fun.apply(null, this.array);
|
63514
|
-
};
|
63515
|
-
|
63516
|
-
process.title = 'browser';
|
63517
|
-
process.browser = true;
|
63518
|
-
process.env = {};
|
63519
|
-
process.argv = [];
|
63520
|
-
process.version = ''; // empty string to avoid regexp issues
|
63521
|
-
|
63522
|
-
process.versions = {};
|
63523
|
-
|
63524
|
-
function noop() {}
|
63525
|
-
|
63526
|
-
process.on = noop;
|
63527
|
-
process.addListener = noop;
|
63528
|
-
process.once = noop;
|
63529
|
-
process.off = noop;
|
63530
|
-
process.removeListener = noop;
|
63531
|
-
process.removeAllListeners = noop;
|
63532
|
-
process.emit = noop;
|
63533
|
-
process.prependListener = noop;
|
63534
|
-
process.prependOnceListener = noop;
|
63535
|
-
|
63536
|
-
process.listeners = function (name) {
|
63537
|
-
return [];
|
63538
|
-
};
|
63539
|
-
|
63540
|
-
process.binding = function (name) {
|
63541
|
-
throw new Error('process.binding is not supported');
|
63542
|
-
};
|
63543
|
-
|
63544
|
-
process.cwd = function () {
|
63545
|
-
return '/';
|
63546
|
-
};
|
63547
|
-
|
63548
|
-
process.chdir = function (dir) {
|
63549
|
-
throw new Error('process.chdir is not supported');
|
63550
|
-
};
|
63551
|
-
|
63552
|
-
process.umask = function () {
|
63553
|
-
return 0;
|
63554
|
-
};
|
63555
|
-
|
63556
|
-
},{}]},{},[3])(3)
|
63612
|
+
},{"./lib/source-map-consumer":636,"./lib/source-map-generator":637,"./lib/source-node":638}]},{},[3])(3)
|
63557
63613
|
});
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: autoprefixer-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 9.4.
|
4
|
+
version: 9.4.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andrey Sitnik
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-01-
|
11
|
+
date: 2019-01-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: execjs
|