Skip to content

Commit

Permalink
Cleanup dependency: Pear should depend on Exporter Rich text and not …
Browse files Browse the repository at this point in the history
…the other way around
  • Loading branch information
Ducasse committed Aug 4, 2020
1 parent 173913b commit 5b01411
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/BaselineOfPillar/BaselineOfPillar.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -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') ];
Expand Down

0 comments on commit 5b01411

Please sign in to comment.