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

Empty Julia Package #200

Merged
merged 2 commits into from
Oct 5, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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