Skip to content

Commit

Permalink
⬆️ Update frontend deps
Browse files Browse the repository at this point in the history
  • Loading branch information
pwwang committed Dec 17, 2021
1 parent a3930bd commit b1ac9f3
Show file tree
Hide file tree
Showing 3 changed files with 69 additions and 42 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Expand Up @@ -120,3 +120,6 @@ docs/index.md
*.tar.gz
*.rds
Rplots.pdf
t.py

example-largereport/*_results
24 changes: 24 additions & 0 deletions example-largereport/largereport.py
@@ -0,0 +1,24 @@
from pipen import Pipen, Proc

class LargeReport(Proc):
"""Process with large report"""
input = "a"
output = "a:var:{{in.a}}"
script = "echo {{in.a}}"
plugin_opts = {
"report": """
{% for i in range(2000) %}
<div>
<div>
<table>
<thead><tr><th></th></tr></thead>
<tbody><tr><td></td></tr></tbody>
</table>
</div>
</div>
{% endfor %}
"""
}

if __name__ == "__main__":
Pipen("LargeReportPipe").set_start(LargeReport).run()
84 changes: 42 additions & 42 deletions pipen_report/frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit b1ac9f3

Please sign in to comment.