Skip to content

Commit

Permalink
Merge pull request #3 from codesyntax/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
ionlizarazu authored Jun 9, 2022
2 parents 54cf793 + ec5badd commit ed8b706
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
1 change: 1 addition & 0 deletions jest-addon.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ module.exports = {
'@package/(.*)$': '<rootDir>/src/$1',
'@plone/volto-quanta/(.*)$': '<rootDir>/src/addons/volto-quanta/src/$1',
'@eeacms/(.*?)/(.*)$': '<rootDir>/src/addons/$1/src/$2',
'@codesyntax/(.*?)/(.*)$': '<rootDir>/src/addons/$1/src/$2',
'volto-slate/(.*)$': '<rootDir>/src/addons/volto-slate/src/$1',
'~/(.*)$': '<rootDir>/src/$1',
'load-volto-addons':
Expand Down
8 changes: 7 additions & 1 deletion src/components/Blocks/FeaturedBlock/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
import FeaturedBlockView from './FeaturedBlockView';
import FeaturedBlockEdit from './FeaturedBlockEdit';
import FeaturedImageEditor from './FeaturedImageEditor';
import { CarouselFeaturedView } from './Variations';

export { FeaturedBlockView, FeaturedBlockEdit, FeaturedImageEditor };
export {
FeaturedBlockView,
FeaturedBlockEdit,
FeaturedImageEditor,
CarouselFeaturedView,
};
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {
FeaturedBlockView,
FeaturedBlockEdit,
} from './components/Blocks/FeaturedBlock';
import { CarouselFeaturedView } from 'volto-ueu/components/Blocks/FeaturedBlock/Variations';
import { CarouselFeaturedView } from './components/Blocks/FeaturedBlock/Variations';

const applyConfig = (config) => {
config.blocks.blocksConfig = {
Expand Down

0 comments on commit ed8b706

Please sign in to comment.