Skip to content
This repository has been archived by the owner on Jun 4, 2024. It is now read-only.

Commit

Permalink
Merge pull request #200 from waralex/empty_julia_package
Browse files Browse the repository at this point in the history
Empty Julia Package
  • Loading branch information
alexcjohnson committed Oct 5, 2021
2 parents c9a5db6 + 5430ba8 commit 0f4f9be
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,11 @@ venv/
lib/bundle.js
lib/bundle.js.map
lib/metadata.json
Project.toml
Manifest.toml
.idea

/scripts/data/attributes.html

/src

/build
/deps
Expand Down
7 changes: 7 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
name = "DashHtmlComponents"
uuid = "1b08a953-4be3-4667-9a23-9da06441d987"
authors = ["Chris Parmer <chris@plotly.com>"]
version = "2.0.0"

[compat]
julia = "1.3"
5 changes: 5 additions & 0 deletions src/DashHtmlComponents.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module DashHtmlComponents
function __init__()
@warn "The `DashHtmlComponents` package is deprecated. All DashHtmlComponents functions have been moved to the Dash package. Please switch to `using Dash` instead."
end
end

0 comments on commit 0f4f9be

Please sign in to comment.