@maz-ui/upgrade 5.0.0-beta.11 → 5.0.0-beta.18
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.mjs
CHANGED
|
@@ -5,7 +5,7 @@ import { resolve, dirname } from 'node:path';
|
|
|
5
5
|
import process from 'node:process';
|
|
6
6
|
import { logger } from '@maz-ui/node';
|
|
7
7
|
import { globby } from 'globby';
|
|
8
|
-
import { A as ALL_GROUPS, h as hasFoundationRadius,
|
|
8
|
+
import { A as ALL_GROUPS, h as hasFoundationRadius, d as transformFile, a as hasMazUiRootImport } from './shared/upgrade.TLmNPyOG.mjs';
|
|
9
9
|
|
|
10
10
|
const DEFAULT_IGNORES = [
|
|
11
11
|
"**/node_modules/**",
|
package/dist/index.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { A as ALL_GROUPS,
|
|
1
|
+
export { A as ALL_GROUPS, t as transformConfig, b as transformCssVars, c as transformDeps, d as transformFile, e as transformHslVar, f as transformImports, g as transformPresetColors, i as transformProps } from './shared/upgrade.TLmNPyOG.mjs';
|
|
@@ -169,4 +169,4 @@ function transformFile(filename, content, options = {}) {
|
|
|
169
169
|
return out;
|
|
170
170
|
}
|
|
171
171
|
|
|
172
|
-
export { ALL_GROUPS as A, hasMazUiRootImport as a,
|
|
172
|
+
export { ALL_GROUPS as A, hasMazUiRootImport as a, transformCssVars as b, transformDeps as c, transformFile as d, transformHslVar as e, transformImports as f, transformPresetColors as g, hasFoundationRadius as h, transformProps as i, transformConfig as t };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maz-ui/upgrade",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "5.0.0-beta.
|
|
4
|
+
"version": "5.0.0-beta.18",
|
|
5
5
|
"description": "Automated source rewrites for migrating a project from Maz-UI v4 to v5.",
|
|
6
6
|
"author": "Louis Mazel <me@loicmazuel.com>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -45,11 +45,11 @@
|
|
|
45
45
|
"@maz-ui/node": "5.0.0-beta.11"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@types/node": "^25.
|
|
48
|
+
"@types/node": "^25.9.0",
|
|
49
49
|
"typescript": "^5.9.3",
|
|
50
50
|
"unbuild": "^3.6.1",
|
|
51
|
-
"vitest": "4.1.
|
|
52
|
-
"@maz-ui/eslint-config": "5.0.0-beta.
|
|
51
|
+
"vitest": "4.1.6",
|
|
52
|
+
"@maz-ui/eslint-config": "5.0.0-beta.18"
|
|
53
53
|
},
|
|
54
54
|
"lint-staged": {
|
|
55
55
|
"*.{js,ts,mjs,mts,cjs,md,yml,json}": "cross-env NODE_ENV=production eslint --fix"
|