Skip to content

Commit a0a7029

Browse files
authored
IBX-10162: Removed taggify dependency (#34)
1 parent fd98bd6 commit a0a7029

File tree

2 files changed

+2
-12
lines changed

2 files changed

+2
-12
lines changed

bin/prepare_release.sh

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,6 @@ REACT_DIR="$VENDOR_DIR/react"
5959
REACT_NOTICE="$REACT_DIR/REACT_IN_ADMINUIASSETS.txt"
6060
REACT_DOM_DIR="$VENDOR_DIR/react-dom"
6161
REACT_DOM_NOTICE="$REACT_DOM_DIR/REACT_DOM_IN_ADMINUIASSETS.txt"
62-
TAGGIFY_DIR="$VENDOR_DIR/taggify"
63-
TAGGIFY_NOTICE="$TAGGIFY_DIR/TAGGIFY_IN_ADMINUIASSETS.txt"
6462
MOMENT_DIR="$VENDOR_DIR/moment"
6563
MOMENT_NOTICE="$MOMENT_DIR/MOMENT_IN_ADMINUIASSETS.txt"
6664
MOMENT_TIMEZONE_DIR="$VENDOR_DIR/moment-timezone"
@@ -135,12 +133,6 @@ check_process "clean ReactDOM"
135133
echo "This is a customized ReactDOM version." > $REACT_DOM_NOTICE
136134
echo "To decrease the size of the bundle, it includes production-only files" >> $REACT_DOM_NOTICE
137135

138-
echo "# Removing unused files from taggify"
139-
rm -r "$TAGGIFY_DIR/test" "$TAGGIFY_DIR/src/css" $TAGGIFY_DIR/src/js/taggify-script.js $TAGGIFY_DIR/src/js/taggify.es6.js $TAGGIFY_DIR/src/js/taggify.min.js.gz $TAGGIFY_DIR/.travis.yml $TAGGIFY_DIR/db.json $TAGGIFY_DIR/gulpfile.js $TAGGIFY_DIR/index.html $TAGGIFY_DIR/karma.conf.js $TAGGIFY_DIR/module-generator.js $TAGGIFY_DIR/taggify-comment.js $TAGGIFY_DIR/template.common.js $TAGGIFY_DIR/template.es6.js
140-
check_process "clean Taggify"
141-
echo "This is a customized Taggify version." > $TAGGIFY_NOTICE
142-
echo "To decrease the size of the bundle, it includes production-only files" >> $TAGGIFY_NOTICE
143-
144136
echo "# Removing unused files from moment"
145137
rm -r "$MOMENT_DIR/src"
146138
check_process "clean moment"

package.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
"move-leaflet": "cp -r node_modules/leaflet src/bundle/Resources/public/vendors/leaflet",
88
"move-react": "cp -r node_modules/react src/bundle/Resources/public/vendors/react",
99
"move-react-dom": "cp -r node_modules/react-dom src/bundle/Resources/public/vendors/react-dom",
10-
"move-taggify": "cp -r node_modules/taggify src/bundle/Resources/public/vendors/taggify",
1110
"move-popperjs": "cp -r node_modules/@popperjs src/bundle/Resources/public/vendors/@popperjs",
1211
"move-flatpickr": "cp -r node_modules/flatpickr src/bundle/Resources/public/vendors/flatpickr",
1312
"move-create-react-class": "cp -r node_modules/create-react-class src/bundle/Resources/public/vendors/create-react-class",
@@ -23,7 +22,7 @@
2322
"move-ckeditor5-core": "cp -r node_modules/ckeditor5 src/bundle/Resources/public/vendors/ckeditor5",
2423
"move-ids-assets": "mkdir src/bundle/Resources/public/vendors/ids-assets && cp -r node_modules/@ibexa/design-system/packages/assets/dist src/bundle/Resources/public/vendors/ids-assets/dist",
2524
"move-ids-components": "mkdir src/bundle/Resources/public/vendors/ids-components && cp -r node_modules/@ibexa/design-system/packages/components/dist src/bundle/Resources/public/vendors/ids-components/dist",
26-
"prepare-release": "yarn run create-folder; yarn run move-bootstrap; yarn run move-jquery; yarn run move-leaflet; yarn run move-react; yarn run move-react-dom; yarn run move-taggify; yarn run move-popperjs; yarn run move-flatpickr; yarn run move-create-react-class; yarn run move-prop-types; yarn run move-moment; yarn run move-moment-timezone; yarn run move-d3; yarn run move-dagre-d3; yarn run move-chart-js; yarn run move-js-md5; yarn run move-ckeditor5; yarn run move-ckeditor5-core; yarn run move-chartjs-plugin-datalabels; yarn run move-ids-assets; yarn run move-ids-components"
25+
"prepare-release": "yarn run create-folder; yarn run move-bootstrap; yarn run move-jquery; yarn run move-leaflet; yarn run move-react; yarn run move-react-dom; yarn run move-popperjs; yarn run move-flatpickr; yarn run move-create-react-class; yarn run move-prop-types; yarn run move-moment; yarn run move-moment-timezone; yarn run move-d3; yarn run move-dagre-d3; yarn run move-chart-js; yarn run move-js-md5; yarn run move-ckeditor5; yarn run move-ckeditor5-core; yarn run move-chartjs-plugin-datalabels; yarn run move-ids-assets; yarn run move-ids-components"
2726
},
2827
"repository": {
2928
"type": "git",
@@ -53,8 +52,7 @@
5352
"@popperjs/core": "^2.11.8",
5453
"prop-types": "^15.8.1",
5554
"react": "^19.1.0",
56-
"react-dom": "^19.1.0",
57-
"taggify": "git+ssh://[email protected]/ibexa/taggify.git#v1.2.2"
55+
"react-dom": "^19.1.0"
5856
},
5957
"packageManager": "[email protected]"
6058
}

0 commit comments

Comments
 (0)