fep-migrator 1.0.4 → 1.0.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.
Files changed (2) hide show
  1. package/dist/index.mjs +1 -1
  2. package/package.json +2 -2
package/dist/index.mjs CHANGED
@@ -43,7 +43,7 @@ const finder = async (dirs) => {
43
43
  }
44
44
  const list = stdout.split("\n").map((line) => JSON.parse(line));
45
45
  list.filter((i) => i.type === "summary").forEach((i) => {
46
- console.log(`⚠️ 发现 ${i.data.stats.matches} 个文件,在css中设置了'font-family', 如无必要请不要覆盖项目字体设置,及时修改。`);
46
+ console.log(`⚠️ 发现 ${i.data.stats.searches_with_match} 个文件,在css中设置了'font-family'。如无必要请不要覆盖项目的字体设置,请及时修改。`);
47
47
  });
48
48
  list.filter((i) => i.type === "match").forEach((i) => {
49
49
  console.log(`➡️ ${i.data.path.text}:${i.data.line_number}`);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "fep-migrator",
3
3
  "type": "module",
4
- "version": "1.0.4",
4
+ "version": "1.0.5",
5
5
  "packageManager": "pnpm@10.23.0",
6
6
  "description": "@falconix/fep migration helper",
7
7
  "author": "tjyuanpeng <tjyuanpeng@gmail.com>",
@@ -47,7 +47,7 @@
47
47
  "globby": "^16.1.0",
48
48
  "magic-string": "^0.30.21",
49
49
  "oxc-parser": "^0.108.0",
50
- "vue-sfc-descriptor-write-back": "^1.0.0"
50
+ "vue-sfc-descriptor-write-back": "^1.0.1"
51
51
  },
52
52
  "devDependencies": {
53
53
  "@antfu/eslint-config": "^6.7.3",