bestax-migrate 2.3.8 → 2.3.9
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/cli.d.ts +3 -0
- package/dist/cli.d.ts.map +1 -1
- package/dist/cli.js +16 -6
- package/dist/sources/_shared/bestax-import.d.ts +45 -0
- package/dist/sources/_shared/bestax-import.d.ts.map +1 -0
- package/dist/sources/_shared/bestax-import.js +141 -0
- package/dist/sources/_shared/css-imports.d.ts +33 -0
- package/dist/sources/_shared/css-imports.d.ts.map +1 -0
- package/dist/sources/_shared/css-imports.js +103 -0
- package/dist/sources/_shared/deps-common.d.ts +46 -0
- package/dist/sources/_shared/deps-common.d.ts.map +1 -0
- package/dist/sources/_shared/deps-common.js +98 -0
- package/dist/sources/_shared/make-styles-transform.d.ts +6 -2
- package/dist/sources/_shared/make-styles-transform.d.ts.map +1 -1
- package/dist/sources/_shared/make-styles-transform.js +12 -4
- package/dist/sources/_shared/specials-utils.d.ts +1 -1
- package/dist/sources/_shared/specials-utils.d.ts.map +1 -1
- package/dist/sources/_shared/specials-utils.js +19 -1
- package/dist/sources/bloomer/deps.d.ts.map +1 -1
- package/dist/sources/bloomer/deps.js +14 -89
- package/dist/sources/bloomer/transform.d.ts.map +1 -1
- package/dist/sources/bloomer/transform.js +9 -185
- package/dist/sources/rbx/deps.d.ts.map +1 -1
- package/dist/sources/rbx/deps.js +29 -117
- package/dist/sources/rbx/mapping.d.ts.map +1 -1
- package/dist/sources/rbx/mapping.js +9 -1
- package/dist/sources/rbx/specials.d.ts.map +1 -1
- package/dist/sources/rbx/specials.js +20 -10
- package/dist/sources/rbx/transform.d.ts.map +1 -1
- package/dist/sources/rbx/transform.js +19 -203
- package/dist/sources/react-bulma-components/deps.d.ts.map +1 -1
- package/dist/sources/react-bulma-components/deps.js +12 -87
- package/dist/sources/react-bulma-components/mapping.js +1 -1
- package/dist/sources/react-bulma-components/specials.d.ts.map +1 -1
- package/dist/sources/react-bulma-components/specials.js +42 -4
- package/dist/sources/react-bulma-components/transform.d.ts.map +1 -1
- package/dist/sources/react-bulma-components/transform.js +13 -186
- package/dist/types.d.ts +7 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +2 -2
|
@@ -17,29 +17,13 @@ import { MAPPING, UNIVERSAL_PROPS, resolveMapping } from './mapping.js';
|
|
|
17
17
|
import { addTodo, attributesOf, jsxNameParts, renameElement, } from '../_shared/jsx-utils.js';
|
|
18
18
|
import { applyPropAction, applyUniversalProps } from '../_shared/props.js';
|
|
19
19
|
import { enforcePolymorphicProps } from '../_shared/polymorphic.js';
|
|
20
|
+
import { bestaxValueLocals, buildBestaxImport, carryPrunedComments, placeBestaxImport, seedBestaxImport, } from '../_shared/bestax-import.js';
|
|
21
|
+
import { rewriteStylesheetImports } from '../_shared/css-imports.js';
|
|
20
22
|
import { collectBoundNames, makeAliasRegistry, makeReserve, nameOf, prefersTabs, resolvesToBinding, } from '../_shared/imports.js';
|
|
21
23
|
import { flattenResponsiveProps } from './responsive.js';
|
|
22
24
|
import { RESPONSIVE_KINDS, runSpecial } from './specials.js';
|
|
23
25
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
24
26
|
const RBC = 'react-bulma-components';
|
|
25
|
-
const BESTAX = '@allxsmith/bestax-bulma';
|
|
26
|
-
const BULMA_CSS = 'bulma/css/bulma.min.css';
|
|
27
|
-
const BESTAX_CSS = '@allxsmith/bestax-bulma/bestax.css';
|
|
28
|
-
const EXTRAS_CSS = '@allxsmith/bestax-bulma/extras.css';
|
|
29
|
-
const BULMA_CSS_SPECIFIERS = new Set([
|
|
30
|
-
'bulma/css/bulma.css',
|
|
31
|
-
'bulma/css/bulma.min.css',
|
|
32
|
-
]);
|
|
33
|
-
const BESTAX_CSS_SPECIFIERS = new Set([
|
|
34
|
-
BESTAX_CSS,
|
|
35
|
-
'@allxsmith/bestax-bulma/bestax.min.css',
|
|
36
|
-
'@allxsmith/bestax-bulma/dist/bestax.css',
|
|
37
|
-
'@allxsmith/bestax-bulma/dist/bestax.min.css',
|
|
38
|
-
]);
|
|
39
|
-
const EXTRAS_CSS_SPECIFIERS = new Set([
|
|
40
|
-
EXTRAS_CSS,
|
|
41
|
-
'@allxsmith/bestax-bulma/dist/extras.css',
|
|
42
|
-
]);
|
|
43
27
|
export default function transform(fileInfo, api, options = {}) {
|
|
44
28
|
const j = api.jscodeshift;
|
|
45
29
|
const root = j(fileInfo.source);
|
|
@@ -105,60 +89,12 @@ export default function transform(fileInfo, api, options = {}) {
|
|
|
105
89
|
addTodo(ctx, p, 'imports', `\`export * from '${RBC}'\` was not migrated; re-export the bestax components you need by hand`);
|
|
106
90
|
});
|
|
107
91
|
// ---- 1a. Stylesheet imports (mode-driven) -----------------------------
|
|
108
|
-
// `
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
.paths()
|
|
115
|
-
.some(p => BESTAX_CSS_SPECIFIERS.has(String(p.node.source.value)));
|
|
116
|
-
root.find(j.ImportDeclaration).forEach(path => {
|
|
117
|
-
const source = String(path.node.source.value);
|
|
118
|
-
const isRbcCss = source.startsWith(`${RBC}/`) && source.endsWith('.css');
|
|
119
|
-
const isBulmaCss = BULMA_CSS_SPECIFIERS.has(source);
|
|
120
|
-
const isExtrasCss = EXTRAS_CSS_SPECIFIERS.has(source);
|
|
121
|
-
if (!isRbcCss && !isBulmaCss && !isExtrasCss)
|
|
122
|
-
return;
|
|
123
|
-
if (cssMode === 'bestax') {
|
|
124
|
-
if (isRbcCss || isBulmaCss) {
|
|
125
|
-
if (sawBestaxCss) {
|
|
126
|
-
path.prune(); // bestax.css already imported elsewhere in this file
|
|
127
|
-
}
|
|
128
|
-
else {
|
|
129
|
-
path.node.source = j.stringLiteral(BESTAX_CSS);
|
|
130
|
-
sawBestaxCss = true;
|
|
131
|
-
}
|
|
132
|
-
ctx.dirty = true;
|
|
133
|
-
}
|
|
134
|
-
else if (isExtrasCss && sawBestaxCss) {
|
|
135
|
-
// bestax.css already contains the extras.
|
|
136
|
-
path.prune();
|
|
137
|
-
ctx.dirty = true;
|
|
138
|
-
}
|
|
139
|
-
}
|
|
140
|
-
else if (cssMode === 'bulma') {
|
|
141
|
-
if (isRbcCss) {
|
|
142
|
-
path.node.source = j.stringLiteral(BULMA_CSS);
|
|
143
|
-
ctx.dirty = true;
|
|
144
|
-
}
|
|
145
|
-
if ((isRbcCss || isBulmaCss) && !sawBestaxCss) {
|
|
146
|
-
const hasExtras = root
|
|
147
|
-
.find(j.ImportDeclaration)
|
|
148
|
-
.paths()
|
|
149
|
-
.some(p => EXTRAS_CSS_SPECIFIERS.has(String(p.node.source.value)));
|
|
150
|
-
if (!hasExtras) {
|
|
151
|
-
// Themed Radio/Checkbox need the bestax extras next to plain Bulma.
|
|
152
|
-
path.insertAfter(j.importDeclaration([], j.stringLiteral(EXTRAS_CSS)));
|
|
153
|
-
ctx.dirty = true;
|
|
154
|
-
}
|
|
155
|
-
}
|
|
156
|
-
}
|
|
157
|
-
else if (isRbcCss) {
|
|
158
|
-
// keep: minimal fix — the v3 bundled CSS no longer exists at all.
|
|
159
|
-
path.node.source = j.stringLiteral(BULMA_CSS);
|
|
160
|
-
addTodo(ctx, path, 'css', `replaced the react-bulma-components CSS import with '${BULMA_CSS}'; install bulma@^1 (see https://bestax.io/docs/guides/getting-started/installation)`);
|
|
161
|
-
}
|
|
92
|
+
// `keep` touches only the dead RBC v3 CSS import.
|
|
93
|
+
rewriteStylesheetImports(ctx, root, options.cssMode ?? 'bestax', {
|
|
94
|
+
sourceCss: {
|
|
95
|
+
is: specifier => specifier.startsWith(`${RBC}/`) && specifier.endsWith('.css'),
|
|
96
|
+
label: 'the react-bulma-components CSS import',
|
|
97
|
+
},
|
|
162
98
|
});
|
|
163
99
|
if (imports.size === 0 && !ctx.dirty) {
|
|
164
100
|
return undefined;
|
|
@@ -343,46 +279,7 @@ export default function transform(fileInfo, api, options = {}) {
|
|
|
343
279
|
bound.add(head);
|
|
344
280
|
});
|
|
345
281
|
ctx.reserve = makeReserve(ctx, bound);
|
|
346
|
-
|
|
347
|
-
// existing bestax import's specifiers below (so JSX reuses their locals),
|
|
348
|
-
// and that seeding alone must not turn a type-only specifier into a value
|
|
349
|
-
// import nobody needed.
|
|
350
|
-
const requested = new Set();
|
|
351
|
-
const baseReserve = ctx.reserve;
|
|
352
|
-
ctx.reserve = root => {
|
|
353
|
-
requested.add(root);
|
|
354
|
-
return baseReserve(root);
|
|
355
|
-
};
|
|
356
|
-
// Merge with an existing bestax import: reuse its locals verbatim.
|
|
357
|
-
// Only a declaration made entirely of NAMED specifiers can be merged into.
|
|
358
|
-
// `import * as Bulma from '@allxsmith/bestax-bulma'` matches the source too,
|
|
359
|
-
// and appending named specifiers to it emitted
|
|
360
|
-
// `import * as Bulma, { Box } from …` — not valid JavaScript, so the whole
|
|
361
|
-
// file failed to parse after a migration that reported success.
|
|
362
|
-
const existingBestax = root
|
|
363
|
-
.find(j.ImportDeclaration, { source: { value: BESTAX } })
|
|
364
|
-
.paths()
|
|
365
|
-
.find(path =>
|
|
366
|
-
// A type-only declaration cannot take a value specifier: merging a
|
|
367
|
-
// component into `import type { … }` erases it at runtime.
|
|
368
|
-
path.node.importKind !== 'type' &&
|
|
369
|
-
(path.node.specifiers ?? []).every((spec) => spec.type === 'ImportSpecifier'));
|
|
370
|
-
const preExistingImports = new Set();
|
|
371
|
-
if (existingBestax) {
|
|
372
|
-
for (const spec of existingBestax.node.specifiers ?? []) {
|
|
373
|
-
if (spec.type === 'ImportSpecifier' && spec.local) {
|
|
374
|
-
// The local name is reused either way, so the JSX never needs an
|
|
375
|
-
// alias. But an inline `type` specifier (`import { type Box }`) is
|
|
376
|
-
// not a value binding: it is not counted as already imported, so the
|
|
377
|
-
// component is written as a value below — onto this specifier, which
|
|
378
|
-
// keeps its name, rather than as a duplicate.
|
|
379
|
-
ctx.needed.set(nameOf(spec.imported), nameOf(spec.local));
|
|
380
|
-
if (spec.importKind !== 'type') {
|
|
381
|
-
preExistingImports.add(nameOf(spec.imported));
|
|
382
|
-
}
|
|
383
|
-
}
|
|
384
|
-
}
|
|
385
|
-
}
|
|
282
|
+
const bestaxImportState = seedBestaxImport(ctx, root);
|
|
386
283
|
// ---- 2. Transform JSX elements ----------------------------------------
|
|
387
284
|
root.find(j.JSXElement).forEach(path => {
|
|
388
285
|
const element = path.node;
|
|
@@ -745,62 +642,13 @@ export default function transform(fileInfo, api, options = {}) {
|
|
|
745
642
|
// ---- 3. Rewrite imports -----------------------------------------------
|
|
746
643
|
if (imports.size > 0) {
|
|
747
644
|
const retainedNames = [...ctx.retained].sort((a, b) => a.localeCompare(b));
|
|
748
|
-
const
|
|
749
|
-
.filter(([imported]) => requested.has(imported) && !preExistingImports.has(imported))
|
|
750
|
-
.sort((a, b) => a[0].localeCompare(b[0]));
|
|
751
|
-
const bestaxImport = freshNames.length > 0
|
|
752
|
-
? j.importDeclaration(freshNames.map(([imported, local]) => j.importSpecifier(j.identifier(imported), j.identifier(local))), j.stringLiteral(BESTAX))
|
|
753
|
-
: null;
|
|
754
|
-
/**
|
|
755
|
-
|
|
756
|
-
* A pruned declaration takes its comments with it — a licence header, an
|
|
757
|
-
|
|
758
|
-
* eslint directive. Hand them to what replaces it, or to the next statement.
|
|
759
|
-
|
|
760
|
-
*/
|
|
761
|
-
const carryComments = (node, importPath) => {
|
|
762
|
-
const comments = node.comments ?? [];
|
|
763
|
-
if (comments.length === 0)
|
|
764
|
-
return;
|
|
765
|
-
const body = importPath.parent?.node?.body ?? [];
|
|
766
|
-
const index = body.indexOf(node);
|
|
767
|
-
// The fresh specifiers are merged INTO an existing bestax import when there
|
|
768
|
-
// is one, and the `bestaxImport` node is then discarded — so the comments
|
|
769
|
-
// have to follow the declaration that survives, not the one that does not.
|
|
770
|
-
const carrier = (existingBestax ? existingBestax.node : bestaxImport) ??
|
|
771
|
-
(index >= 0 ? body[index + 1] : undefined);
|
|
772
|
-
if (carrier) {
|
|
773
|
-
carrier.comments = [...comments, ...(carrier.comments ?? [])];
|
|
774
|
-
}
|
|
775
|
-
else if (index > 0) {
|
|
776
|
-
// The import was the last statement: the comments stay where they
|
|
777
|
-
// were, after what precedes it.
|
|
778
|
-
const previous = body[index - 1];
|
|
779
|
-
previous.comments = [
|
|
780
|
-
...(previous.comments ?? []),
|
|
781
|
-
...comments.map((c) => ({
|
|
782
|
-
...c,
|
|
783
|
-
leading: false,
|
|
784
|
-
trailing: true,
|
|
785
|
-
})),
|
|
786
|
-
];
|
|
787
|
-
}
|
|
788
|
-
else {
|
|
789
|
-
// The import was the only statement: the comments become the file's.
|
|
790
|
-
const program = importPath.parent?.node;
|
|
791
|
-
if (program)
|
|
792
|
-
program.comments = [...comments, ...(program.comments ?? [])];
|
|
793
|
-
}
|
|
794
|
-
node.comments = [];
|
|
795
|
-
};
|
|
645
|
+
const bestaxImport = buildBestaxImport(ctx, bestaxImportState);
|
|
796
646
|
let inserted = false;
|
|
797
647
|
// A retained RBC specifier must never collide with a bestax import local
|
|
798
648
|
// (possible when one component is both JSX-migrated and value-retained).
|
|
799
649
|
// Only a VALUE local can collide at runtime: a type-only specifier the
|
|
800
650
|
// seeding above recorded, and nothing promoted, binds no value.
|
|
801
|
-
const bestaxLocals =
|
|
802
|
-
.filter(([imported]) => requested.has(imported) || preExistingImports.has(imported))
|
|
803
|
-
.map(([, local]) => local));
|
|
651
|
+
const bestaxLocals = bestaxValueLocals(ctx, bestaxImportState);
|
|
804
652
|
for (const path of rbcImportPaths) {
|
|
805
653
|
const node = path.node;
|
|
806
654
|
const keepSpecifiers = (node.specifiers ?? []).filter((spec) => {
|
|
@@ -815,28 +663,7 @@ export default function transform(fileInfo, api, options = {}) {
|
|
|
815
663
|
!bestaxLocals.has(nameOf(spec.local)));
|
|
816
664
|
});
|
|
817
665
|
if (!inserted) {
|
|
818
|
-
|
|
819
|
-
const current = existingBestax.node.specifiers ?? [];
|
|
820
|
-
const appended = [];
|
|
821
|
-
for (const fresh of bestaxImport.specifiers) {
|
|
822
|
-
// A type-only specifier for the same name becomes the value
|
|
823
|
-
// import (a value import carries the type too); appending a
|
|
824
|
-
// second `Box` beside `type Box` would be a duplicate identifier.
|
|
825
|
-
const typeOnly = current.find((spec) => spec.type === 'ImportSpecifier' &&
|
|
826
|
-
spec.importKind === 'type' &&
|
|
827
|
-
nameOf(spec.imported) === nameOf(fresh.imported));
|
|
828
|
-
if (typeOnly) {
|
|
829
|
-
typeOnly.importKind = null;
|
|
830
|
-
}
|
|
831
|
-
else {
|
|
832
|
-
appended.push(fresh);
|
|
833
|
-
}
|
|
834
|
-
}
|
|
835
|
-
existingBestax.node.specifiers = [...current, ...appended];
|
|
836
|
-
}
|
|
837
|
-
else if (bestaxImport) {
|
|
838
|
-
path.insertBefore(bestaxImport);
|
|
839
|
-
}
|
|
666
|
+
placeBestaxImport(bestaxImportState, bestaxImport, path);
|
|
840
667
|
inserted = true;
|
|
841
668
|
}
|
|
842
669
|
if (keepSpecifiers.length > 0) {
|
|
@@ -848,7 +675,7 @@ export default function transform(fileInfo, api, options = {}) {
|
|
|
848
675
|
}
|
|
849
676
|
}
|
|
850
677
|
else {
|
|
851
|
-
|
|
678
|
+
carryPrunedComments(node, path, bestaxImportState.existing?.node ?? bestaxImport);
|
|
852
679
|
path.prune();
|
|
853
680
|
}
|
|
854
681
|
ctx.dirty = true;
|
package/dist/types.d.ts
CHANGED
|
@@ -141,6 +141,13 @@ export interface MigrationSource {
|
|
|
141
141
|
name: string;
|
|
142
142
|
/** Human-readable label for the report header. */
|
|
143
143
|
label: string;
|
|
144
|
+
/**
|
|
145
|
+
* The npm package this source migrates away from, when it is not `name`.
|
|
146
|
+
* `null` for a source with no package to move off: nothing is looked for
|
|
147
|
+
* in imports, and the manifest pass is never told the source is still
|
|
148
|
+
* imported.
|
|
149
|
+
*/
|
|
150
|
+
packageName?: string | null;
|
|
144
151
|
transform: Transform;
|
|
145
152
|
transformStyles?: StylesTransform;
|
|
146
153
|
updateDependencies?: DependenciesUpdate;
|
package/dist/types.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bestax-migrate",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.9",
|
|
4
4
|
"description": "Codemods for migrating existing React apps from other Bulma libraries to @allxsmith/bestax-bulma",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"chalk": "^6.0.0",
|
|
39
39
|
"commander": "^15.0.0",
|
|
40
40
|
"jscodeshift": "^17.3.0",
|
|
41
|
-
"@allxsmith/bestax-bulma": "^5.16.
|
|
41
|
+
"@allxsmith/bestax-bulma": "^5.16.9"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@jest/globals": "^30.0.0",
|