Mercurial > code > home > repos > streamed-graph
annotate tasks.py @ 10:1c3a39057b11
jasmine.json
author | drewp@bigasterisk.com |
---|---|
date | Fri, 06 Dec 2019 09:21:49 -0800 |
parents | 26d3e4860adc |
children | 7ca4ff2088c3 94629c39681c |
rev | line source |
---|---|
0 | 1 from invoke import task # pytype: disable=import-error |
2 | |
3 | |
4 @task | |
5 def setup_npm(ctx): | |
6 ctx.run('npm install') | |
7 | |
8 @task | |
9 def serve_demo(ctx): | |
10 ctx.run('node_modules/webpack-serve/bin/webpack-serve --config webpack-dev.config.ts --port 8082') | |
11 | |
12 @task | |
13 def build(ctx): | |
14 ctx.run(f'npm run build') | |
15 ctx.run(f'cp build/streamed-graph.bundle.js /my/site/homepage/www/rdf/streamed-graph.bundle.js') | |
16 ctx.run(f'cp streamed-graph.css /my/site/homepage/www/rdf/streamed-graph.css') | |
9
26d3e4860adc
working on porting graph_view to n3.js. also working on making tests run
drewp@bigasterisk.com
parents:
0
diff
changeset
|
17 |
26d3e4860adc
working on porting graph_view to n3.js. also working on making tests run
drewp@bigasterisk.com
parents:
0
diff
changeset
|
18 @task |
26d3e4860adc
working on porting graph_view to n3.js. also working on making tests run
drewp@bigasterisk.com
parents:
0
diff
changeset
|
19 def test(ctx): |
26d3e4860adc
working on porting graph_view to n3.js. also working on making tests run
drewp@bigasterisk.com
parents:
0
diff
changeset
|
20 ctx.run(f'node_modules/ts-node/dist/bin.js node_modules/jasmine/bin/jasmine --config=jasmine.json') |