MCPcopy Index your code
hub / github.com/plotly/dash / __init__

Method __init__

dash/development/build_process.py:168–185  ·  view source on GitHub ↗

dash-renderer's path is binding with the dash folder hierarchy.

(self)

Source from the content-addressed store, hash-verified

166
167class Renderer(BuildProcess):
168 def __init__(self):
169 """dash-renderer's path is binding with the dash folder hierarchy."""
170 extras = [
171 "18.2.0",
172 "16.14.0",
173 ] # versions to include beyond what's in package.json
174 super().__init__(
175 self._concat(os.path.dirname(__file__), os.pardir, "dash-renderer"),
176 (
177 ("@babel", "polyfill", "dist", "polyfill.min.js", None),
178 (None, "react", "umd", "react.production.min.js", extras),
179 (None, "react", "umd", "react.development.js", extras),
180 (None, "react-dom", "umd", "react-dom.production.min.js", extras),
181 (None, "react-dom", "umd", "react-dom.development.js", extras),
182 (None, "prop-types", None, "prop-types.min.js", None),
183 (None, "prop-types", None, "prop-types.js", None),
184 ),
185 )
186
187
188def renderer():

Callers

nothing calls this directly

Calls 1

_concatMethod · 0.80

Tested by

no test coverage detected