Skip to content

Commit 4e5080a

Browse files
committed
fixes
1 parent df9a689 commit 4e5080a

File tree

4 files changed

+10
-145
lines changed

4 files changed

+10
-145
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "Dash"
22
uuid = "1b08a953-4be3-4667-9a23-3db579824955"
33
authors = ["Chris Parmer <[email protected]>", "Alexandr Romanenko <[email protected]>"]
4-
version = "0.1.3"
4+
version = "0.1.4"
55

66
[deps]
77
CodecZlib = "944b1d66-785c-5afd-91f1-9de20f533193"

src/Dash.jl

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -74,12 +74,12 @@ function __init__()
7474
RESOURCE_PATH, version = "1.5.0",
7575
[
7676
Resource(
77-
relative_package_path = "react@16.13.0.js",
78-
external_url = "https://unpkg.com/react@16.13.0/umd/react.development.js"
77+
relative_package_path = "react@16.14.0.js",
78+
external_url = "https://unpkg.com/react@16.14.0/umd/react.development.js"
7979
),
8080
Resource(
81-
relative_package_path = "react-dom@16.13.0.js",
82-
external_url = "https://unpkg.com/react-dom@16.13.0/umd/react-dom.development.js"
81+
relative_package_path = "react-dom@16.14.0.js",
82+
external_url = "https://unpkg.com/react-dom@16.14.0/umd/react-dom.development.js"
8383
),
8484
Resource(
8585
relative_package_path = "[email protected]",
@@ -96,12 +96,12 @@ function __init__()
9696
RESOURCE_PATH, version = "1.2.2",
9797
[
9898
Resource(
99-
relative_package_path = "react@16.13.0.min.js",
100-
external_url = "https://unpkg.com/react@16.13.0/umd/react.production.min.js"
99+
relative_package_path = "react@16.14.0.min.js",
100+
external_url = "https://unpkg.com/react@16.14.0/umd/react.production.min.js"
101101
),
102102
Resource(
103-
relative_package_path = "react-dom@16.13.0.min.js",
104-
external_url = "https://unpkg.com/react-dom@16.13.0/umd/react-dom.production.min.js"
103+
relative_package_path = "react-dom@16.14.0.min.js",
104+
external_url = "https://unpkg.com/react-dom@16.14.0/umd/react-dom.production.min.js"
105105
),
106106
Resource(
107107
relative_package_path = "[email protected]",

src/handler/processors/assets.jl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
function process_assets(request::HTTP.Request, state::HandlerState; file_path::AbstractString)
22
app = state.app
33
filename = joinpath(get_assets_path(app), file_path)
4-
54
try
65
headers = Pair{String,String}[]
76
mimetype = mime_by_path(filename)
@@ -11,5 +10,5 @@ function process_assets(request::HTTP.Request, state::HandlerState; file_path::A
1110
catch
1211
return HTTP.Response(404)
1312
end
14-
13+
1514
end

src/resources/registry.jl

Lines changed: 0 additions & 134 deletions
This file was deleted.

0 commit comments

Comments
 (0)