From 5b0141159017688622c425d160774f3296794099 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phaneDucasse?= Date: Tue, 4 Aug 2020 14:10:13 +0200 Subject: [PATCH] Cleanup dependency: Pear should depend on Exporter Rich text and not the other way around --- src/BaselineOfPillar/BaselineOfPillar.class.st | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/BaselineOfPillar/BaselineOfPillar.class.st b/src/BaselineOfPillar/BaselineOfPillar.class.st index 83f7836e..8a9a0577 100644 --- a/src/BaselineOfPillar/BaselineOfPillar.class.st +++ b/src/BaselineOfPillar/BaselineOfPillar.class.st @@ -63,13 +63,13 @@ BaselineOfPillar >> baseline: spec [ package: 'Pillar-ExporterText' with: [ spec requires: #('Pillar-ExporterCore') ]; package: 'Pillar-Core'; - package: 'Pillar-Pear'; + package: 'Pillar-Pear' with: [ spec requires: #('Pillar-ExporterRichText')]; package: 'Pillar-Model' with: [ spec requires: #('Pillar-Core')]; package: 'Pillar-CodeBlockEvaluator' with: [ spec requires: #('Pillar-Core')]; package: 'Pillar-PetitPillar' with: [ spec requires: #('PetitParser2Core' 'Pillar-Model') ]; "Going from Pillar model to richText" package: 'Pillar-ExporterRichText' - with: [ spec requires: #('Pillar-Core' 'Pillar-Pear') ]; + with: [ spec requires: #('Pillar-Core') ]; "Going from Pillar text to richText" package: 'Pillar-PillarTextRichTextExporter' with: [ spec requires: #('Pillar-ExporterRichText' 'Pillar-PetitPillar') ];