abmp-npm 1.10.10 → 1.10.11

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.
@@ -134,7 +134,7 @@ const TASKS = {
134
134
  },
135
135
  [TASKS_NAMES.migrateUrlsChunk]: {
136
136
  name: TASKS_NAMES.migrateUrlsChunk,
137
- getIdentifier: task => `chunk-${task.data.chunkIndex}`,
137
+ getIdentifier: task => task.data,
138
138
  process: migrateUrlsChunk,
139
139
  shouldSkipCheck: () => false,
140
140
  estimatedDurationSec: 80,
@@ -148,7 +148,7 @@ const TASKS = {
148
148
  },
149
149
  [TASKS_NAMES.generateUrlsChunk]: {
150
150
  name: TASKS_NAMES.generateUrlsChunk,
151
- getIdentifier: task => `chunk-${task.data.chunkIndex}`,
151
+ getIdentifier: task => task.data,
152
152
  process: generateUrlsChunk,
153
153
  shouldSkipCheck: () => false,
154
154
  estimatedDurationSec: 80,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "abmp-npm",
3
- "version": "1.10.10",
3
+ "version": "1.10.11",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "check-cycles": "madge --circular .",