Skip to content

Commit 15ee2e8

Browse files
authored
Merge pull request #16 from etpinard/try-to-fix-registry-prs
Try to fix registry prs
2 parents f13d523 + c513a03 commit 15ee2e8

File tree

4 files changed

+8
-14
lines changed

4 files changed

+8
-14
lines changed

Artifacts.toml

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

Project.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@
22
name = "DashTextareaAutocomplete"
33
uuid = "1b08a953-4be3-4667-9a23-5aadec407a69"
44
authors = ["Etienne Tetreault-Pinard <[email protected]>"]
5-
version = "1.2.1"
5+
version = "1.2.0"
66

77
[deps]
8-
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
98
Dash = "1b08a953-4be3-4667-9a23-3db579824955"
109

1110
[compat]

postbuild_fixups.sh

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@ version=${1?Please specify version}
55
# src/DashTextareaAutocomplete
66
declare -a moduleregs=(\
77
's/https:\/\/unpkg.com\/dash_textarea_autocomplete/https:\/\/unpkg.com\/dash-textarea-autocomplete/' \
8-
's/realpath(joinpath( @__DIR__, \"..\", \"deps\"))/artifact\"dash_textarea_autocomplete_resources\"/' \
9-
's/using Dash/using Dash, Pkg.Artifacts/')
8+
# 's/realpath(joinpath( @__DIR__, \"..\", \"deps\"))/artifact\"dash_textarea_autocomplete_resources\"/' \
9+
# 's/using Dash/using Dash, Pkg.Artifacts/' \
10+
)
1011

1112
for reg in "${moduleregs[@]}"
1213
do
@@ -15,7 +16,7 @@ done
1516

1617
# Project.toml
1718
declare -a projectregs=(\
18-
's/\[deps\]/\[deps\]\nPkg = \"44cfe95a-1eb2-52ea-b672-e2afdf69b78f\"/' \
19+
# 's/\[deps\]/\[deps\]\nPkg = \"44cfe95a-1eb2-52ea-b672-e2afdf69b78f\"/' \
1920
's/Dash = \"0.1.3\"/Dash = \"0.1.3, 1.0\"/' \
2021
's/julia = \"1.2\"/julia = \"1.3\"/')
2122

@@ -25,4 +26,4 @@ do
2526
done
2627

2728
# Artifacts.toml
28-
sed -i "s/[1-999]\.[0-999]\.[0-999]\|{version}/${version}/" Artifacts.toml
29+
# sed -i "s/[1-999]\.[0-999]\.[0-999]\|{version}/${version}/" Artifacts.toml

src/DashTextareaAutocomplete.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11

22
module DashTextareaAutocomplete
3-
using Dash, Pkg.Artifacts
3+
using Dash
44

5-
const resources_path = artifact"dash_textarea_autocomplete_resources"
5+
const resources_path = realpath(joinpath( @__DIR__, "..", "deps"))
66
const version = "1.2.1"
77

88
include("jl/dashtextareaautocomplete.jl")

0 commit comments

Comments
 (0)