Explorar el Código

clean up css change msg

Steven Silvester hace 5 años
padre
commit
6929a9c436
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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);
     }
   }