@clickview/ship-it 0.0.54 → 0.0.55
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/config.json +1 -1
- package/lib/config.json +1 -1
- package/lib/src/tasks/InstallPackagesTask.js +2 -2
- package/package.json +1 -1
package/config.json
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"password": "hock-inflame-prodigy-unstrap"
|
|
11
11
|
},
|
|
12
12
|
"slack": {
|
|
13
|
-
"botToken": "xoxb-10474490612-6484075093633-
|
|
13
|
+
"botToken": "xoxb-10474490612-6484075093633-MFIjf7BbkHyylKEYaSbyjCwb",
|
|
14
14
|
"channelId": "C03DX0DSG3F"
|
|
15
15
|
},
|
|
16
16
|
"trello": {
|
package/lib/config.json
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"password": "hock-inflame-prodigy-unstrap"
|
|
11
11
|
},
|
|
12
12
|
"slack": {
|
|
13
|
-
"botToken": "xoxb-10474490612-6484075093633-
|
|
13
|
+
"botToken": "xoxb-10474490612-6484075093633-MFIjf7BbkHyylKEYaSbyjCwb",
|
|
14
14
|
"channelId": "C03DX0DSG3F"
|
|
15
15
|
},
|
|
16
16
|
"trello": {
|
|
@@ -83,9 +83,9 @@ var ROOT_DIRECTORIES = {
|
|
|
83
83
|
/**
|
|
84
84
|
* npm accepts a publish before the version can be resolved from the registry. Large packages get
|
|
85
85
|
* queued for background processing ("Your package is being processed and may take a few minutes to
|
|
86
|
-
* become available"), so we poll for up to
|
|
86
|
+
* become available"), so we poll for up to 10 minutes.
|
|
87
87
|
*/
|
|
88
|
-
var PUBLISH_POLL_ATTEMPTS =
|
|
88
|
+
var PUBLISH_POLL_ATTEMPTS = 40;
|
|
89
89
|
var PUBLISH_POLL_INTERVAL_MS = 15000;
|
|
90
90
|
var InstallPackagesTask = /** @class */ (function () {
|
|
91
91
|
function InstallPackagesTask(service) {
|