ソースを参照

clean up css change msg

Steven Silvester 5 年 前
コミット
6929a9c436
1 ファイル変更1 行追加1 行削除
  1. 1 1
      buildutils/src/ensure-package.ts

+ 1 - 1
buildutils/src/ensure-package.ts

@@ -137,7 +137,7 @@ export async function ensurePackage(
     const cssPath = path.join(pkgPath, 'style/index.css');
     const prev = fs.readFileSync(cssPath, { encoding: 'utf8' });
     if (prev !== cssIndex) {
-      messages.push(`Updated ${data.name}/${data.style}`);
+      messages.push(`Updated ./${data.style}`);
       fs.writeFileSync(cssPath, cssIndex);
     }
   }