Skip to content

Commit 95f5b9c

Browse files
committed
Pin NPM version for build-time download
1 parent 137a1a0 commit 95f5b9c

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

deps/build.jl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
using JSON
22

33
include("./bundlepaths.jl")
4-
include("./jupyter.jl")
5-
64
download_js_bundles()
75

86
const CONFIG_BEGIN_MARKER = "###JULIA-WEBIO-CONFIG-BEGIN"

deps/bundlepaths.jl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
using Pkg.TOML
22

3-
const WEBIO_VERSION = let
4-
project_file = normpath(joinpath(@__DIR__, "..", "Project.toml"))
5-
project = TOML.parsefile(project_file)
6-
VersionNumber(project["version"])
7-
end
3+
# Fix the NPM version for now
4+
# Now that we're not distributing Jupyter stuff via NPM, I'd rather just check
5+
# in compiled assets (maybe using Artifacts if that's relatively easy, otherwise
6+
# just as files in git).
7+
const WEBIO_VERSION = "0.8.15"
88

99
const PACKAGES_PATH = normpath(joinpath(@__DIR__, "..", "packages"))
1010
const BUNDLES_PATH = normpath(joinpath(@__DIR__, "bundles"))

0 commit comments

Comments
 (0)