@db-ux/core-migration 2.4.4 → 3.0.1
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/build/index.js +66 -1
- package/package.json +7 -7
package/build/index.js
CHANGED
|
@@ -516,6 +516,70 @@ var v100_v200 = [
|
|
|
516
516
|
}
|
|
517
517
|
];
|
|
518
518
|
|
|
519
|
+
// src/migration/v2.0.0-v3.0.0.ts
|
|
520
|
+
var v200_v300 = [
|
|
521
|
+
{
|
|
522
|
+
files: "",
|
|
523
|
+
from: /icon-before/g,
|
|
524
|
+
to: "icon-leading"
|
|
525
|
+
},
|
|
526
|
+
{
|
|
527
|
+
files: "",
|
|
528
|
+
from: /icon-after/g,
|
|
529
|
+
to: "icon-trailing"
|
|
530
|
+
},
|
|
531
|
+
{
|
|
532
|
+
files: "",
|
|
533
|
+
from: /iconBefore/g,
|
|
534
|
+
to: "iconLeading"
|
|
535
|
+
},
|
|
536
|
+
{
|
|
537
|
+
files: "",
|
|
538
|
+
from: /iconAfter/g,
|
|
539
|
+
to: "iconTrailing"
|
|
540
|
+
},
|
|
541
|
+
{
|
|
542
|
+
files: "",
|
|
543
|
+
from: /IconBefore/g,
|
|
544
|
+
to: "IconLeading"
|
|
545
|
+
},
|
|
546
|
+
{
|
|
547
|
+
files: "",
|
|
548
|
+
from: /IconAfter/g,
|
|
549
|
+
to: "IconTrailing"
|
|
550
|
+
},
|
|
551
|
+
{
|
|
552
|
+
files: "",
|
|
553
|
+
from: /labelledBy/g,
|
|
554
|
+
to: "aria-labelledby"
|
|
555
|
+
},
|
|
556
|
+
{
|
|
557
|
+
files: "",
|
|
558
|
+
from: /describedbyid/g,
|
|
559
|
+
to: "aria-describedby"
|
|
560
|
+
},
|
|
561
|
+
{
|
|
562
|
+
files: "",
|
|
563
|
+
from: /ariaexpanded/g,
|
|
564
|
+
to: "aria-expanded"
|
|
565
|
+
},
|
|
566
|
+
{
|
|
567
|
+
files: "",
|
|
568
|
+
from: /ariapressed/g,
|
|
569
|
+
to: "aria-pressed"
|
|
570
|
+
},
|
|
571
|
+
{
|
|
572
|
+
files: "",
|
|
573
|
+
from: /transparent-hovered/g,
|
|
574
|
+
to: "transparent-full-hovered"
|
|
575
|
+
},
|
|
576
|
+
{
|
|
577
|
+
files: "",
|
|
578
|
+
from: /transparent-pressed/g,
|
|
579
|
+
to: "transparent-full-pressed"
|
|
580
|
+
}
|
|
581
|
+
];
|
|
582
|
+
|
|
519
583
|
// src/data.ts
|
|
520
584
|
var migrationTypes = {
|
|
521
585
|
colorQ32024,
|
|
@@ -523,7 +587,8 @@ var migrationTypes = {
|
|
|
523
587
|
v005_v006,
|
|
524
588
|
v006_v007,
|
|
525
589
|
v007_v100,
|
|
526
|
-
v100_v200
|
|
590
|
+
v100_v200,
|
|
591
|
+
v200_v300
|
|
527
592
|
};
|
|
528
593
|
var options = [
|
|
529
594
|
{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@db-ux/core-migration",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Migration script for changing your code in between DB UX Design System v3 versions regarding BREAKING CHANGES.",
|
|
6
6
|
"repository": {
|
|
@@ -25,15 +25,15 @@
|
|
|
25
25
|
"test:migration": "tsx src/cli.ts migration --type v005_v006 --src=./scss --dryRun=true"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"commander": "
|
|
29
|
-
"glob": "
|
|
30
|
-
"replace-in-file": "
|
|
28
|
+
"commander": "14.0.0",
|
|
29
|
+
"glob": "11.0.3",
|
|
30
|
+
"replace-in-file": "8.3.0"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"cpr": "3.0.1",
|
|
34
|
-
"esbuild": "0.25.
|
|
35
|
-
"tsx": "
|
|
36
|
-
"vitest": "
|
|
34
|
+
"esbuild": "0.25.8",
|
|
35
|
+
"tsx": "4.20.3",
|
|
36
|
+
"vitest": "3.2.4"
|
|
37
37
|
},
|
|
38
38
|
"publishConfig": {
|
|
39
39
|
"registry": "https://registry.npmjs.org/",
|