@formatjs/cli 6.10.0 → 6.11.0
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/bin/formatjs +28 -5
- package/package.json +5 -5
package/bin/formatjs
CHANGED
|
@@ -7599,9 +7599,9 @@ var require_out2 = __commonJS({
|
|
|
7599
7599
|
}
|
|
7600
7600
|
});
|
|
7601
7601
|
|
|
7602
|
-
// node_modules/.aspect_rules_js/reusify@1.0
|
|
7602
|
+
// node_modules/.aspect_rules_js/reusify@1.1.0/node_modules/reusify/reusify.js
|
|
7603
7603
|
var require_reusify = __commonJS({
|
|
7604
|
-
"node_modules/.aspect_rules_js/reusify@1.0
|
|
7604
|
+
"node_modules/.aspect_rules_js/reusify@1.1.0/node_modules/reusify/reusify.js"(exports, module2) {
|
|
7605
7605
|
"use strict";
|
|
7606
7606
|
function reusify(Constructor) {
|
|
7607
7607
|
var head = new Constructor();
|
|
@@ -7630,9 +7630,9 @@ var require_reusify = __commonJS({
|
|
|
7630
7630
|
}
|
|
7631
7631
|
});
|
|
7632
7632
|
|
|
7633
|
-
// node_modules/.aspect_rules_js/fastq@1.
|
|
7633
|
+
// node_modules/.aspect_rules_js/fastq@1.20.1/node_modules/fastq/queue.js
|
|
7634
7634
|
var require_queue = __commonJS({
|
|
7635
|
-
"node_modules/.aspect_rules_js/fastq@1.
|
|
7635
|
+
"node_modules/.aspect_rules_js/fastq@1.20.1/node_modules/fastq/queue.js"(exports, module2) {
|
|
7636
7636
|
"use strict";
|
|
7637
7637
|
var reusify = require_reusify();
|
|
7638
7638
|
function fastqueue(context, worker, _concurrency) {
|
|
@@ -7679,7 +7679,8 @@ var require_queue = __commonJS({
|
|
|
7679
7679
|
empty: noop,
|
|
7680
7680
|
kill,
|
|
7681
7681
|
killAndDrain,
|
|
7682
|
-
error: error2
|
|
7682
|
+
error: error2,
|
|
7683
|
+
abort
|
|
7683
7684
|
};
|
|
7684
7685
|
return self;
|
|
7685
7686
|
function running() {
|
|
@@ -7799,6 +7800,28 @@ var require_queue = __commonJS({
|
|
|
7799
7800
|
self.drain();
|
|
7800
7801
|
self.drain = noop;
|
|
7801
7802
|
}
|
|
7803
|
+
function abort() {
|
|
7804
|
+
var current = queueHead;
|
|
7805
|
+
queueHead = null;
|
|
7806
|
+
queueTail = null;
|
|
7807
|
+
while (current) {
|
|
7808
|
+
var next = current.next;
|
|
7809
|
+
var callback = current.callback;
|
|
7810
|
+
var errorHandler2 = current.errorHandler;
|
|
7811
|
+
var val = current.value;
|
|
7812
|
+
var context2 = current.context;
|
|
7813
|
+
current.value = null;
|
|
7814
|
+
current.callback = noop;
|
|
7815
|
+
current.errorHandler = null;
|
|
7816
|
+
if (errorHandler2) {
|
|
7817
|
+
errorHandler2(new Error("abort"), val);
|
|
7818
|
+
}
|
|
7819
|
+
callback.call(context2, new Error("abort"));
|
|
7820
|
+
current.release(current);
|
|
7821
|
+
current = next;
|
|
7822
|
+
}
|
|
7823
|
+
self.drain = noop;
|
|
7824
|
+
}
|
|
7802
7825
|
function error2(handler) {
|
|
7803
7826
|
errorHandler = handler;
|
|
7804
7827
|
}
|
package/package.json
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@formatjs/cli",
|
|
3
3
|
"description": "A CLI for formatjs.",
|
|
4
|
-
"version": "6.
|
|
4
|
+
"version": "6.11.0",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Linjie Ding <linjie@airtable.com>",
|
|
7
7
|
"engines": {
|
|
8
8
|
"node": ">= 16"
|
|
9
9
|
},
|
|
10
10
|
"devDependencies": {
|
|
11
|
-
"@formatjs/cli-lib": "8.
|
|
11
|
+
"@formatjs/cli-lib": "8.2.0"
|
|
12
12
|
},
|
|
13
13
|
"peerDependencies": {
|
|
14
14
|
"@glimmer/syntax": "^0.95.0",
|
|
15
|
-
"@vue/compiler-core": "
|
|
16
|
-
"content-tag": "4",
|
|
15
|
+
"@vue/compiler-core": "3.5.26",
|
|
16
|
+
"content-tag": "^4.1.0",
|
|
17
17
|
"ember-template-recast": "^6.1.5",
|
|
18
|
-
"vue": "
|
|
18
|
+
"vue": "3.5.26"
|
|
19
19
|
},
|
|
20
20
|
"bin": {
|
|
21
21
|
"formatjs": "bin/formatjs"
|