Skip to content

Commit 27ab1ad

Browse files
committed
Changed task to pull from dist package
The swagger-ui-dist package is the post bundled version of the dist folder. This allows us not to bring in a bundler like webpack.
1 parent 0721404 commit 27ab1ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tasks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def clean(ctx):
1818
def install(ctx):
1919
ctx.run('npm install')
2020
ctx.run('rm -rf flask_apispec/static')
21-
ctx.run('cp -r node_modules/swagger-ui/dist flask_apispec/static')
21+
ctx.run('cp -r node_modules/swagger-ui-dist flask_apispec/static')
2222

2323
@task
2424
def clean_docs(ctx):

0 commit comments

Comments
 (0)