Skip to content

Commit

Permalink
Merge pull request #63 from sitegeist/bugfix/neos82support
Browse files Browse the repository at this point in the history
BUGFIX: Adjust fe build for taxonomy editor to support neos 8.2
  • Loading branch information
mficzel authored Jan 11, 2023
2 parents aca3bf2 + ef7f704 commit c986557
Show file tree
Hide file tree
Showing 9 changed files with 26,191 additions and 3,338 deletions.
4 changes: 4 additions & 0 deletions Configuration/Settings.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ Neos:
'Sitegeist.Taxonomy:TaxonomyEditor':
resource: 'resource://Sitegeist.Taxonomy/Public/JavaScript/TaxonomyEditor/Plugin.js'

stylesheets:
'Sitegeist.Taxonomy:TaxonomyEditor':
resource: 'resource://Sitegeist.Taxonomy/Public/JavaScript/TaxonomyEditor/Plugin.css'

modules:
management:
submodules:
Expand Down
2 changes: 1 addition & 1 deletion Resources/Private/Scripts/TaxonomyEditor/.nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
8
16
13 changes: 8 additions & 5 deletions Resources/Private/Scripts/TaxonomyEditor/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,21 @@
"license": "GPL-3.0+",
"private": true,
"engines": {
"node": ">=8"
"node": ">=16"
},
"scripts": {
"build": "neos-react-scripts build && uglifyjs --compress --mangle -o ../../../Public/JavaScript/TaxonomyEditor/Plugin.js -- ../../../Public/JavaScript/TaxonomyEditor/Plugin.js",
"build": "neos-react-scripts build",
"watch": "neos-react-scripts watch"
},
"dependencies": {
"react-sortable-hoc": "^0.6.8"
"core-js": "^3.27.1",
"react-sortable-hoc": "^0.6.8",
"regenerator-runtime": "^0.13.11"
},
"devDependencies": {
"@neos-project/react-ui-components": "~3.1.0",
"@neos-project/neos-ui-extensibility": "~3.1.0"
"@neos-project/build-essentials": "^8.2.0",
"@neos-project/neos-ui-extensibility": "^8.2.0",
"@neos-project/react-ui-components": "^8.2.0"
},
"neos": {
"buildTargetDirectory": "../../../Public/JavaScript/TaxonomyEditor"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ import {selectors} from '@neos-project/neos-ui-redux-store';
import {Icon} from '@neos-project/react-ui-components';

import styles from './TaxonomyTreeSelect.css';
import "regenerator-runtime/runtime";
import "core-js/stable";

@connect((state, {identifier}) => {
const contextForNodeLinking = selectors.UI.NodeLinking.contextForNodeLinking(state);
Expand Down
6,228 changes: 4,301 additions & 1,927 deletions Resources/Private/Scripts/TaxonomyEditor/yarn.lock

Large diffs are not rendered by default.

71 changes: 71 additions & 0 deletions Resources/Public/JavaScript/TaxonomyEditor/Plugin.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Resources/Public/JavaScript/TaxonomyEditor/Plugin.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit c986557

Please sign in to comment.