Pārlūkot izejas kodu

Add comment about where imports.css was generated

Steven Silvester 5 gadi atpakaļ
vecāks
revīzija
f40dc63ede
1 mainītis faili ar 2 papildinājumiem un 0 dzēšanām
  1. 2 0
      buildutils/src/build.ts

+ 2 - 0
buildutils/src/build.ts

@@ -165,6 +165,8 @@ export namespace Build {
 
       // Template the CSS index file.
       let cssContents = '/* This is a generated file of CSS imports */';
+      cssContents +=
+        '\n/* It was generated by @jupyterlab/buildutils in Build.ensureAssets() */';
       cssContents += `\n@import url('~${appCSS}');`;
       cssImports.forEach(cssImport => {
         cssContents += `\n@import url('~${cssImport}');`;