/
githubmirror
/
edx-platform
Обзор
Документация
Войти
/
githubmirror
/
edx-platform
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
release-ulmo
xmodule/static_content.py
25 строк
663 B
Kyle McCormick
build: commit builtinblocks Webpack config and stub out `xmodule_assets` (#32685)
27 июл 2023, 17:32
Не верифицирован
27 июл 2023, 17:32
3557799
Код
Авторство
О чём код?
# /usr/bin/env python """ This module used to hold a CLI utility for gathering up the JS and Sass used by several built-in XBlocks. It now remains as a stub, just for backwards compatibility. It will soon be removed as part of https://github.com/openedx/edx-platform/issues/31798. """ import logging import sys def main(): """ Warn that this script is now a stub, and return success (zero). """ logging.warning( "xmodule/static_content.py, aka xmodule_assets, is now a no-op. " "Please remove calls to it from your build pipeline. It will soon be deleted.", ) return 0 if __name__ == "__main__": sys.exit(main())