소스 검색

fix script and add note

Steven Silvester 6 년 전
부모
커밋
71a333e345
2개의 변경된 파일2개의 추가작업 그리고 4개의 파일을 삭제
  1. 2 1
      docs/source/developer/extension_dev.rst
  2. 0 3
      scripts/travis_script.sh

+ 2 - 1
docs/source/developer/extension_dev.rst

@@ -265,7 +265,8 @@ theme asset entry point is specified ``package.json`` under the ``"jupyterlab"``
 key as ``"themePath"``. See the `JupyterLab Light
 Theme <https://github.com/jupyterlab/jupyterlab/tree/master/packages/theme-light-extension>`__
 for an example. Ensure that the theme files are included in the
-``"files"`` metadata in package.json.
+``"files"`` metadata in package.json.  Note that if you want to use SCSS, SASS, or LESS files,
+you must compile them to CSS and point JupyterLab to the CSS files.
 
 To quickly create a theme based on the JupyterLab Light Theme, follow
 the instructions in the `contributing

+ 0 - 3
scripts/travis_script.sh

@@ -60,9 +60,6 @@ if [[ $GROUP == integrity ]]; then
     # Build the packages individually.
     jlpm run build:src
 
-    # Build the themes
-    jlpm run build:themes
-
     # Make sure the examples build
     jlpm run build:examples