소스 검색

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);
     }
   }