ember-codemod-add-component-signatures 5.4.3 → 5.4.5
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/dist/src/steps/analyze-project/analyze-components/worker.js +2 -10
- package/dist/src/steps/analyze-project/filter-components/worker.js +2 -10
- package/dist/src/steps/create-registries/worker.js +2 -10
- package/dist/src/steps/create-signatures/worker.js +2 -10
- package/dist/src/steps/update-signatures/worker.js +2 -10
- package/package.json +11 -11
|
@@ -1,11 +1,3 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { runTask } from '@codemod-utils/threads';
|
|
1
|
+
import { runWorker } from '@codemod-utils/threads';
|
|
3
2
|
import { task } from './task.js';
|
|
4
|
-
|
|
5
|
-
runTask(task, datasets)
|
|
6
|
-
.then((result) => {
|
|
7
|
-
parentPort?.postMessage(result);
|
|
8
|
-
})
|
|
9
|
-
.catch((error) => {
|
|
10
|
-
throw error;
|
|
11
|
-
});
|
|
3
|
+
runWorker(task);
|
|
@@ -1,11 +1,3 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { runTask } from '@codemod-utils/threads';
|
|
1
|
+
import { runWorker } from '@codemod-utils/threads';
|
|
3
2
|
import { task } from './task.js';
|
|
4
|
-
|
|
5
|
-
runTask(task, datasets)
|
|
6
|
-
.then((result) => {
|
|
7
|
-
parentPort?.postMessage(result);
|
|
8
|
-
})
|
|
9
|
-
.catch((error) => {
|
|
10
|
-
throw error;
|
|
11
|
-
});
|
|
3
|
+
runWorker(task);
|
|
@@ -1,11 +1,3 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { runTask } from '@codemod-utils/threads';
|
|
1
|
+
import { runWorker } from '@codemod-utils/threads';
|
|
3
2
|
import { task } from './task.js';
|
|
4
|
-
|
|
5
|
-
runTask(task, datasets)
|
|
6
|
-
.then((result) => {
|
|
7
|
-
parentPort?.postMessage(result);
|
|
8
|
-
})
|
|
9
|
-
.catch((error) => {
|
|
10
|
-
throw error;
|
|
11
|
-
});
|
|
3
|
+
runWorker(task);
|
|
@@ -1,11 +1,3 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { runTask } from '@codemod-utils/threads';
|
|
1
|
+
import { runWorker } from '@codemod-utils/threads';
|
|
3
2
|
import { task } from './task.js';
|
|
4
|
-
|
|
5
|
-
runTask(task, datasets)
|
|
6
|
-
.then((result) => {
|
|
7
|
-
parentPort?.postMessage(result);
|
|
8
|
-
})
|
|
9
|
-
.catch((error) => {
|
|
10
|
-
throw error;
|
|
11
|
-
});
|
|
3
|
+
runWorker(task);
|
|
@@ -1,11 +1,3 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { runTask } from '@codemod-utils/threads';
|
|
1
|
+
import { runWorker } from '@codemod-utils/threads';
|
|
3
2
|
import { task } from './task.js';
|
|
4
|
-
|
|
5
|
-
runTask(task, datasets)
|
|
6
|
-
.then((result) => {
|
|
7
|
-
parentPort?.postMessage(result);
|
|
8
|
-
})
|
|
9
|
-
.catch((error) => {
|
|
10
|
-
throw error;
|
|
11
|
-
});
|
|
3
|
+
runWorker(task);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ember-codemod-add-component-signatures",
|
|
3
|
-
"version": "5.4.
|
|
3
|
+
"version": "5.4.5",
|
|
4
4
|
"description": "Codemod to add component signatures",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"codemod",
|
|
@@ -24,21 +24,21 @@
|
|
|
24
24
|
"dist"
|
|
25
25
|
],
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@codemod-utils/ast-javascript": "^3.0.
|
|
28
|
-
"@codemod-utils/ast-template": "^3.0.
|
|
29
|
-
"@codemod-utils/ast-template-tag": "^2.
|
|
30
|
-
"@codemod-utils/blueprints": "^3.0.
|
|
31
|
-
"@codemod-utils/ember": "^4.1.
|
|
32
|
-
"@codemod-utils/files": "^4.0.
|
|
33
|
-
"@codemod-utils/package-json": "^4.0.
|
|
34
|
-
"@codemod-utils/threads": "^0.
|
|
27
|
+
"@codemod-utils/ast-javascript": "^3.0.1",
|
|
28
|
+
"@codemod-utils/ast-template": "^3.0.1",
|
|
29
|
+
"@codemod-utils/ast-template-tag": "^2.1.0",
|
|
30
|
+
"@codemod-utils/blueprints": "^3.0.2",
|
|
31
|
+
"@codemod-utils/ember": "^4.1.1",
|
|
32
|
+
"@codemod-utils/files": "^4.0.1",
|
|
33
|
+
"@codemod-utils/package-json": "^4.0.1",
|
|
34
|
+
"@codemod-utils/threads": "^1.0.0",
|
|
35
35
|
"yargs": "^18.0.0"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"@changesets/cli": "^2.30.0",
|
|
39
|
-
"@codemod-utils/tests": "^3.0.
|
|
39
|
+
"@codemod-utils/tests": "^3.0.1",
|
|
40
40
|
"@ijlee2-frontend-configs/changesets": "^2.1.0",
|
|
41
|
-
"@ijlee2-frontend-configs/eslint-config-node": "^3.1.
|
|
41
|
+
"@ijlee2-frontend-configs/eslint-config-node": "^3.1.1",
|
|
42
42
|
"@ijlee2-frontend-configs/prettier": "^3.0.1",
|
|
43
43
|
"@sondr3/minitest": "^0.1.2",
|
|
44
44
|
"@tsconfig/node22": "^22.0.5",
|