Skip to content

Commit 9c0c11c

Browse files
authored
IBX-10792: Prepare scripts for dev version of admin-ui-assets (#43)
1 parent 111e7ac commit 9c0c11c

File tree

4 files changed

+208
-117
lines changed

4 files changed

+208
-117
lines changed

bin/prepare_next.sh

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
#! /bin/sh
2+
# Script to prepare a admin-ui-assets bundle release as [version]-next branch
3+
4+
[ ! -f "bin/prepare_release.sh" ] && echo "This script has to be run the root of the bundle" && exit 1
5+
6+
print_usage()
7+
{
8+
echo "Create a new version of admin-ui-assets bundle by creating [version]-next"
9+
echo "This script MUST be run from the bundle root directory. It will create"
10+
echo "a branch but this branch will NOT be pushed"
11+
echo ""
12+
echo "Usage: $1 -v <version> -b <branch>"
13+
echo "-v : where version will be used to create next branch"
14+
echo "-b : branch which will be used to create next branch"
15+
}
16+
17+
VERSION=""
18+
BRANCH=""
19+
while getopts ":h:v:b:" opt ; do
20+
case $opt in
21+
v ) VERSION=$OPTARG ;;
22+
b ) BRANCH=$OPTARG ;;
23+
h ) print_usage "$0"
24+
exit 0 ;;
25+
* ) print_usage "$0"
26+
exit 2 ;;
27+
esac
28+
done
29+
30+
[ -z "$BRANCH" ] && print_usage "$0" && exit 2
31+
[ -z "$VERSION" ] && print_usage "$0" && exit 2
32+
33+
check_command()
34+
{
35+
$1 --version 2>&1 > /dev/null
36+
check_process "find '$1' in the PATH, is it installed?"
37+
}
38+
39+
check_process()
40+
{
41+
[ $? -ne 0 ] && echo "Fail to $1" && exit 3
42+
}
43+
44+
check_command "git"
45+
check_command "yarn"
46+
47+
CURRENT_BRANCH=`git branch | grep '*' | cut -d ' ' -f 2`
48+
NEXT_BRANCH="$VERSION-next"
49+
50+
echo "# Switching to $BRANCH and updating"
51+
git checkout -q $BRANCH > /dev/null && git pull > /dev/null
52+
check_process "switch to $BRANCH"
53+
54+
jq --indent 4 '.scripts["postinstall"] = "(cd node_modules/@ibexa/design-system && yarn install &&yarn packages:build)"' package.json > package.json.tmp && mv package.json.tmp package.json
55+
./bin/prepare_release_files.sh
56+
git checkout HEAD -- package.json
57+
check_process "prepare the release files"
58+
59+
echo "# Creating next branch: $NEXT_BRANCH"
60+
git checkout -q -B "$NEXT_BRANCH" > /dev/null
61+
check_process "create the branch '$NEXT_BRANCH'"
62+
63+
echo "# Commiting"
64+
git add src/bundle/Resources > /dev/null
65+
git commit -q -m "Version $VERSION"
66+
check_process "commit the assets"
67+
68+
echo ""
69+
echo "The branch '$NEXT_BRANCH' has been created, please check that everything is correct"
70+
echo "then you can run:"
71+
echo " git push origin $NEXT_BRANCH"

bin/prepare_release.sh

Lines changed: 2 additions & 116 deletions
Original file line numberDiff line numberDiff line change
@@ -44,36 +44,6 @@ check_process()
4444
check_command "git"
4545
check_command "yarn"
4646

47-
VENDOR_DIR="src/bundle/Resources/public/vendors"
48-
BOOTSTRAP_DIR="$VENDOR_DIR/bootstrap"
49-
BOOTSTRAP_NOTICE="$BOOTSTRAP_DIR/BOOTSTRAP_IN_ADMINUIASSETS.txt"
50-
FLATPICKR_DIR="$VENDOR_DIR/flatpickr"
51-
FLATPICKR_NOTICE="$FLATPICKR_DIR/FLATPICKR_IN_ADMINUIASSETS.txt"
52-
JQUERY_DIR="$VENDOR_DIR/jquery"
53-
JQUERY_NOTICE="$JQUERY_DIR/JQUERY_IN_ADMINUIASSETS.txt"
54-
LEAFLET_DIR="$VENDOR_DIR/leaflet"
55-
LEAFLET_NOTICE="$LEAFLET_DIR/LEAFLET_IN_ADMINUIASSETS.txt"
56-
POPPER_DIR="$VENDOR_DIR/@popperjs"
57-
POPPER_NOTICE="$POPPER_DIR/POPPER_IN_ADMINUIASSETS.txt"
58-
REACT_DIR="$VENDOR_DIR/react"
59-
REACT_NOTICE="$REACT_DIR/REACT_IN_ADMINUIASSETS.txt"
60-
REACT_DOM_DIR="$VENDOR_DIR/react-dom"
61-
REACT_DOM_NOTICE="$REACT_DOM_DIR/REACT_DOM_IN_ADMINUIASSETS.txt"
62-
MOMENT_DIR="$VENDOR_DIR/moment"
63-
MOMENT_NOTICE="$MOMENT_DIR/MOMENT_IN_ADMINUIASSETS.txt"
64-
MOMENT_TIMEZONE_DIR="$VENDOR_DIR/moment-timezone"
65-
MOMENT_TIMEZONE_NOTICE="$MOMENT_TIMEZONE_DIR/MOMENT_TIMEZONE_IN_ADMINUIASSETS.txt"
66-
D3_DIR="$VENDOR_DIR/d3"
67-
D3_NOTICE="$D3_DIR/D3_IN_ADMINUIASSETS.txt"
68-
DAGRE_D3_DIR="$VENDOR_DIR/dagre-d3"
69-
DAGRE_D3_NOTICE="$DAGRE_D3_DIR/DAGRE_D3_IN_ADMINUIASSETS.txt"
70-
JS_MD5_DIR="$VENDOR_DIR/js-md5"
71-
JS_MD5_NOTICE="$JS_MD5_DIR/JS_MD5_IN_ADMINUIASSETS.txt"
72-
CHART_JS_DIR="$VENDOR_DIR/chart-js"
73-
CHART_JS_NOTICE="$CHART_JS_DIR/CHART_JS_IN_ADMINUIASSETS.txt"
74-
CHARTJS_PLUGIN_DATALABELS_DIR="$VENDOR_DIR/chartjs-plugin-datalabels"
75-
CHARTJS_PLUGIN_DATALABELS_NOTICE="$CHARTJS_PLUGIN_DATALABELS_DIR/CHARTJS_PLUGIN_DATALABELS_IN_ADMINUIASSETS.txt"
76-
7747
CURRENT_BRANCH=`git branch | grep '*' | cut -d ' ' -f 2`
7848
TMP_BRANCH="version_$VERSION"
7949
TAG="v$VERSION"
@@ -82,92 +52,8 @@ echo "# Switching to $BRANCH and updating"
8252
git checkout -q $BRANCH > /dev/null && git pull > /dev/null
8353
check_process "switch to $BRANCH"
8454

85-
echo "# Removing the assets"
86-
[ ! -d "$VENDOR_DIR" ] && mkdir -p $VENDOR_DIR
87-
[ -d "$VENDOR_DIR" ] && rm -rf $VENDOR_DIR/*
88-
check_process "clean the vendor dir $VENDOR_DIR"
89-
90-
echo "# Removing yarn.lock"
91-
rm "yarn.lock"
92-
93-
echo "# Installing dependendencies"
94-
yarn install
95-
yarn run prepare-release
96-
97-
echo "# Removing unused files from Bootstrap"
98-
rm -r "$BOOTSTRAP_DIR/dist/css" "$BOOTSTRAP_DIR/js" $BOOTSTRAP_DIR/dist/js/bootstrap.js $BOOTSTRAP_DIR/dist/js/bootstrap.js.map $BOOTSTRAP_DIR/dist/js/bootstrap.bundle.js $BOOTSTRAP_DIR/dist/js/bootstrap.bundle.js.map $BOOTSTRAP_DIR/dist/js/bootstrap.bundle.min.js $BOOTSTRAP_DIR/dist/js/bootstrap.bundle.min.js.map
99-
check_process "clean bootstrap"
100-
echo "This is a customized Bootstrap version." > $BOOTSTRAP_NOTICE
101-
echo "To decrease the size of the bundle, it includes production-only files" >> $BOOTSTRAP_NOTICE
102-
103-
echo "# Removing unused files from Flatpickr"
104-
rm -r "$FLATPICKR_DIR/src" $FLATPICKR_DIR/dist/flatpickr.css $FLATPICKR_DIR/dist/flatpickr.js $FLATPICKR_DIR/dist/ie.css $FLATPICKR_DIR/README.md
105-
check_process "clean flatpickr"
106-
echo "This is a customized Flatpickr version." > $FLATPICKR_NOTICE
107-
echo "To decrease the size of the bundle, it includes production-only files" >> $FLATPICKR_NOTICE
108-
109-
echo "# Removing unused files from jQuery"
110-
rm -r "$JQUERY_DIR/src" $JQUERY_DIR/dist/jquery.js $JQUERY_DIR/dist/jquery.min.map $JQUERY_DIR/dist/jquery.slim.js $JQUERY_DIR/dist/jquery.slim.min.js $JQUERY_DIR/dist/jquery.slim.min.map $JQUERY_DIR/AUTHORS.txt $JQUERY_DIR/bower.json $JQUERY_DIR/README.md
111-
check_process "clean jquery"
112-
echo "This is a customized jQuery version." > $JQUERY_NOTICE
113-
echo "To decrease the size of the bundle, it includes production-only files" >> $JQUERY_NOTICE
114-
115-
echo "# Removing unused files from Leaflet"
116-
rm -r "$LEAFLET_DIR/src" $LEAFLET_DIR/CHANGELOG.md $LEAFLET_DIR/README.md
117-
check_process "clean Leaflet"
118-
echo "This is a customized Leaflet version." > $LEAFLET_NOTICE
119-
echo "To decrease the size of the bundle, it includes production-only files" >> $LEAFLET_NOTICE
120-
121-
echo "# Removing unused files from Popper"
122-
rm -r "$POPPER_DIR/core/dist/esm" $POPPER_DIR/core/dist/umd/popper.js $POPPER_DIR/core/dist/umd/popper.js.map
123-
check_process "clean popperjs"
124-
echo "This is a customized Popperjs version." > $POPPER_NOTICE
125-
echo "To decrease the size of the bundle, it includes production-only files" >> $POPPER_NOTICE
126-
127-
echo "This is a customized React version." > $REACT_NOTICE
128-
echo "To decrease the size of the bundle, it includes production-only files" >> $REACT_NOTICE
129-
130-
echo "# Removing unused files from react-dom"
131-
rm -r $REACT_DOM_DIR/server.js $REACT_DOM_DIR/test-utils.js
132-
check_process "clean ReactDOM"
133-
echo "This is a customized ReactDOM version." > $REACT_DOM_NOTICE
134-
echo "To decrease the size of the bundle, it includes production-only files" >> $REACT_DOM_NOTICE
135-
136-
echo "# Removing unused files from moment"
137-
rm -r "$MOMENT_DIR/src"
138-
check_process "clean moment"
139-
echo "This is a customized moment version." > $MOMENT_NOTICE
140-
echo "To decrease the size of the bundle, it includes production-only files" >> $MOMENT_NOTICE
141-
142-
echo "# Removing unused files from moment-timezone"
143-
rm -r "$MOMENT_TIMEZONE_DIR/data"
144-
check_process "clean moment-timezone"
145-
echo "This is a customized moment version." > $MOMENT_TIMEZONE_NOTICE
146-
echo "To decrease the size of the bundle, it includes production-only files" >> $MOMENT_TIMEZONE_NOTICE
147-
148-
echo "# Removing unused files from d3"
149-
rm -r "$D3_DIR/node_modules" $D3_DIR/CHANGES.md $D3_DIR/index.js $D3_DIR/dist/d3.node.js $D3_DIR/dist/package.js
150-
check_process "clean d3"
151-
echo "This is a customized d3 version." > $D3_NOTICE
152-
echo "To decrease the size of the bundle, it includes production-only files" >> $D3_NOTICE
153-
154-
echo "# Removing unused files from dagre-d3"
155-
rm -r "$DAGRE_D3_DIR/lib" "$DAGRE_D3_DIR/dist/demo" $DAGRE_D3_DIR/.jshintrc $DAGRE_D3_DIR/bower.json $DAGRE_D3_DIR/index.js $DAGRE_D3_DIR/karma.conf.js $DAGRE_D3_DIR/karma.core.conf.js $DAGRE_D3_DIR/dist/dagre-d3.core.js $DAGRE_D3_DIR/dist/dagre-d3.core.min.js $DAGRE_D3_DIR/dist/dagre-d3.core.min.js.map
156-
check_process "clean dagre-d3"
157-
echo "This is a customized dagre-d3 version." > $DAGRE_D3_NOTICE
158-
echo "To decrease the size of the bundle, it includes production-only files" >> $DAGRE_D3_NOTICE
159-
160-
echo "# Removing unused files from js-md5"
161-
rm -r "$JS_MD5_DIR/src"
162-
check_process "clean js-md5"
163-
echo "This is a customized js-md5 version." > $JS_MD5_NOTICE
164-
echo "To decrease the size of the bundle, it includes production-only files" >> $JS_MD5_NOTICE
165-
166-
echo "This is a customized chart-js version." > $CHART_JS_NOTICE
167-
echo "To decrease the size of the bundle, it includes production-only files" >> $CHART_JS_NOTICE
168-
169-
echo "This is a customized chartjs-plugin-datalabels version." > $CHARTJS_PLUGIN_DATALABELS_NOTICE
170-
echo "To decrease the size of the bundle, it includes production-only files" >> $CHARTJS_PLUGIN_DATALABELS_NOTICE
55+
./bin/prepare_release_files.sh
56+
check_process "prepare the release files"
17157

17258
echo "# Creating the custom branch: $TMP_BRANCH"
17359
git checkout -q -b "$TMP_BRANCH" > /dev/null

bin/prepare_release_files.sh

Lines changed: 134 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,134 @@
1+
#! /bin/sh
2+
# Script to prepare a admin-ui-assets bundle release files
3+
4+
check_command()
5+
{
6+
$1 --version 2>&1 > /dev/null
7+
check_process "find '$1' in the PATH, is it installed?"
8+
}
9+
10+
check_process()
11+
{
12+
[ $? -ne 0 ] && echo "Fail to $1" && exit 3
13+
}
14+
15+
check_command "yarn"
16+
17+
VENDOR_DIR="src/bundle/Resources/public/vendors"
18+
BOOTSTRAP_DIR="$VENDOR_DIR/bootstrap"
19+
BOOTSTRAP_NOTICE="$BOOTSTRAP_DIR/BOOTSTRAP_IN_ADMINUIASSETS.txt"
20+
FLATPICKR_DIR="$VENDOR_DIR/flatpickr"
21+
FLATPICKR_NOTICE="$FLATPICKR_DIR/FLATPICKR_IN_ADMINUIASSETS.txt"
22+
JQUERY_DIR="$VENDOR_DIR/jquery"
23+
JQUERY_NOTICE="$JQUERY_DIR/JQUERY_IN_ADMINUIASSETS.txt"
24+
LEAFLET_DIR="$VENDOR_DIR/leaflet"
25+
LEAFLET_NOTICE="$LEAFLET_DIR/LEAFLET_IN_ADMINUIASSETS.txt"
26+
POPPER_DIR="$VENDOR_DIR/@popperjs"
27+
POPPER_NOTICE="$POPPER_DIR/POPPER_IN_ADMINUIASSETS.txt"
28+
REACT_DIR="$VENDOR_DIR/react"
29+
REACT_NOTICE="$REACT_DIR/REACT_IN_ADMINUIASSETS.txt"
30+
REACT_DOM_DIR="$VENDOR_DIR/react-dom"
31+
REACT_DOM_NOTICE="$REACT_DOM_DIR/REACT_DOM_IN_ADMINUIASSETS.txt"
32+
MOMENT_DIR="$VENDOR_DIR/moment"
33+
MOMENT_NOTICE="$MOMENT_DIR/MOMENT_IN_ADMINUIASSETS.txt"
34+
MOMENT_TIMEZONE_DIR="$VENDOR_DIR/moment-timezone"
35+
MOMENT_TIMEZONE_NOTICE="$MOMENT_TIMEZONE_DIR/MOMENT_TIMEZONE_IN_ADMINUIASSETS.txt"
36+
D3_DIR="$VENDOR_DIR/d3"
37+
D3_NOTICE="$D3_DIR/D3_IN_ADMINUIASSETS.txt"
38+
DAGRE_D3_DIR="$VENDOR_DIR/dagre-d3"
39+
DAGRE_D3_NOTICE="$DAGRE_D3_DIR/DAGRE_D3_IN_ADMINUIASSETS.txt"
40+
JS_MD5_DIR="$VENDOR_DIR/js-md5"
41+
JS_MD5_NOTICE="$JS_MD5_DIR/JS_MD5_IN_ADMINUIASSETS.txt"
42+
CHART_JS_DIR="$VENDOR_DIR/chart-js"
43+
CHART_JS_NOTICE="$CHART_JS_DIR/CHART_JS_IN_ADMINUIASSETS.txt"
44+
CHARTJS_PLUGIN_DATALABELS_DIR="$VENDOR_DIR/chartjs-plugin-datalabels"
45+
CHARTJS_PLUGIN_DATALABELS_NOTICE="$CHARTJS_PLUGIN_DATALABELS_DIR/CHARTJS_PLUGIN_DATALABELS_IN_ADMINUIASSETS.txt"
46+
47+
echo "# Removing the assets"
48+
[ ! -d "$VENDOR_DIR" ] && mkdir -p $VENDOR_DIR
49+
[ -d "$VENDOR_DIR" ] && rm -rf $VENDOR_DIR/*
50+
check_process "clean the vendor dir $VENDOR_DIR"
51+
52+
echo "# Removing yarn.lock"
53+
rm "yarn.lock"
54+
55+
echo "# Installing dependendencies"
56+
yarn install
57+
yarn run prepare-release
58+
59+
echo "# Removing unused files from Bootstrap"
60+
rm -r "$BOOTSTRAP_DIR/dist/css" "$BOOTSTRAP_DIR/js" $BOOTSTRAP_DIR/dist/js/bootstrap.js $BOOTSTRAP_DIR/dist/js/bootstrap.js.map $BOOTSTRAP_DIR/dist/js/bootstrap.bundle.js $BOOTSTRAP_DIR/dist/js/bootstrap.bundle.js.map $BOOTSTRAP_DIR/dist/js/bootstrap.bundle.min.js $BOOTSTRAP_DIR/dist/js/bootstrap.bundle.min.js.map
61+
check_process "clean bootstrap"
62+
echo "This is a customized Bootstrap version." > $BOOTSTRAP_NOTICE
63+
echo "To decrease the size of the bundle, it includes production-only files" >> $BOOTSTRAP_NOTICE
64+
65+
echo "# Removing unused files from Flatpickr"
66+
rm -r "$FLATPICKR_DIR/src" $FLATPICKR_DIR/dist/flatpickr.css $FLATPICKR_DIR/dist/flatpickr.js $FLATPICKR_DIR/dist/ie.css $FLATPICKR_DIR/README.md
67+
check_process "clean flatpickr"
68+
echo "This is a customized Flatpickr version." > $FLATPICKR_NOTICE
69+
echo "To decrease the size of the bundle, it includes production-only files" >> $FLATPICKR_NOTICE
70+
71+
echo "# Removing unused files from jQuery"
72+
rm -r "$JQUERY_DIR/src" $JQUERY_DIR/dist/jquery.js $JQUERY_DIR/dist/jquery.min.map $JQUERY_DIR/dist/jquery.slim.js $JQUERY_DIR/dist/jquery.slim.min.js $JQUERY_DIR/dist/jquery.slim.min.map $JQUERY_DIR/AUTHORS.txt $JQUERY_DIR/bower.json $JQUERY_DIR/README.md
73+
check_process "clean jquery"
74+
echo "This is a customized jQuery version." > $JQUERY_NOTICE
75+
echo "To decrease the size of the bundle, it includes production-only files" >> $JQUERY_NOTICE
76+
77+
echo "# Removing unused files from Leaflet"
78+
rm -r "$LEAFLET_DIR/src" $LEAFLET_DIR/CHANGELOG.md $LEAFLET_DIR/README.md
79+
check_process "clean Leaflet"
80+
echo "This is a customized Leaflet version." > $LEAFLET_NOTICE
81+
echo "To decrease the size of the bundle, it includes production-only files" >> $LEAFLET_NOTICE
82+
83+
echo "# Removing unused files from Popper"
84+
rm -r "$POPPER_DIR/core/dist/esm" $POPPER_DIR/core/dist/umd/popper.js $POPPER_DIR/core/dist/umd/popper.js.map
85+
check_process "clean popperjs"
86+
echo "This is a customized Popperjs version." > $POPPER_NOTICE
87+
echo "To decrease the size of the bundle, it includes production-only files" >> $POPPER_NOTICE
88+
89+
echo "This is a customized React version." > $REACT_NOTICE
90+
echo "To decrease the size of the bundle, it includes production-only files" >> $REACT_NOTICE
91+
92+
echo "# Removing unused files from react-dom"
93+
rm -r $REACT_DOM_DIR/server.js $REACT_DOM_DIR/test-utils.js
94+
check_process "clean ReactDOM"
95+
echo "This is a customized ReactDOM version." > $REACT_DOM_NOTICE
96+
echo "To decrease the size of the bundle, it includes production-only files" >> $REACT_DOM_NOTICE
97+
98+
echo "# Removing unused files from moment"
99+
rm -r "$MOMENT_DIR/src"
100+
check_process "clean moment"
101+
echo "This is a customized moment version." > $MOMENT_NOTICE
102+
echo "To decrease the size of the bundle, it includes production-only files" >> $MOMENT_NOTICE
103+
104+
echo "# Removing unused files from moment-timezone"
105+
rm -r "$MOMENT_TIMEZONE_DIR/data"
106+
check_process "clean moment-timezone"
107+
echo "This is a customized moment version." > $MOMENT_TIMEZONE_NOTICE
108+
echo "To decrease the size of the bundle, it includes production-only files" >> $MOMENT_TIMEZONE_NOTICE
109+
110+
echo "# Removing unused files from d3"
111+
rm -r "$D3_DIR/node_modules" $D3_DIR/CHANGES.md $D3_DIR/index.js $D3_DIR/dist/d3.node.js $D3_DIR/dist/package.js
112+
check_process "clean d3"
113+
echo "This is a customized d3 version." > $D3_NOTICE
114+
echo "To decrease the size of the bundle, it includes production-only files" >> $D3_NOTICE
115+
116+
echo "# Removing unused files from dagre-d3"
117+
rm -r "$DAGRE_D3_DIR/lib" "$DAGRE_D3_DIR/dist/demo" $DAGRE_D3_DIR/.jshintrc $DAGRE_D3_DIR/bower.json $DAGRE_D3_DIR/index.js $DAGRE_D3_DIR/karma.conf.js $DAGRE_D3_DIR/karma.core.conf.js $DAGRE_D3_DIR/dist/dagre-d3.core.js $DAGRE_D3_DIR/dist/dagre-d3.core.min.js $DAGRE_D3_DIR/dist/dagre-d3.core.min.js.map
118+
check_process "clean dagre-d3"
119+
echo "This is a customized dagre-d3 version." > $DAGRE_D3_NOTICE
120+
echo "To decrease the size of the bundle, it includes production-only files" >> $DAGRE_D3_NOTICE
121+
122+
echo "# Removing unused files from js-md5"
123+
rm -r "$JS_MD5_DIR/src"
124+
check_process "clean js-md5"
125+
echo "This is a customized js-md5 version." > $JS_MD5_NOTICE
126+
echo "To decrease the size of the bundle, it includes production-only files" >> $JS_MD5_NOTICE
127+
128+
echo "This is a customized chart-js version." > $CHART_JS_NOTICE
129+
echo "To decrease the size of the bundle, it includes production-only files" >> $CHART_JS_NOTICE
130+
131+
echo "This is a customized chartjs-plugin-datalabels version." > $CHARTJS_PLUGIN_DATALABELS_NOTICE
132+
echo "To decrease the size of the bundle, it includes production-only files" >> $CHARTJS_PLUGIN_DATALABELS_NOTICE
133+
134+
exit 0;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
"d3": "^5.16.0",
4545
"dagre-d3": "^0.6.4",
4646
"flatpickr": "^4.6.13",
47-
"@ibexa/design-system": "https://github.com/ibexa/design-system#^v1.0.0",
47+
"@ibexa/design-system": "https://github.com/ibexa/design-system#main",
4848
"jquery": "^3.7.1",
4949
"js-md5": "0.7.3",
5050
"leaflet": "^1.9.4",

0 commit comments

Comments
 (0)