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