Skip to content

Commit

Permalink
fix on baseline
Browse files Browse the repository at this point in the history
  • Loading branch information
estebanlm committed Apr 25, 2024
1 parent 42e7760 commit 3ef22e1
Showing 1 changed file with 13 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,22 +18,26 @@ BaselineOfNewToolsDocumentBrowser >> baseline: spec [
loads: #('RichText') ].

spec
package: #'Microdown-RichTextPresenter'
with: [ spec requires: #( #Microdown ) ];
package: #'Microdown-RichTextPresenter-Tests'
with: [ spec requires: #( #'Microdown-RichTextPresenter' ) ];

package: #'NewTools-DocumentBrowser'
with: [ spec requires: #( #'Microdown' ) ];
with: [ spec requires: #( #'Microdown-RichTextPresenter' ) ];
package: #'NewTools-DocumentBrowser-Tests'
with: [ spec requires: #( #'NewTools-DocumentBrowser' ) ];

package: #'NewTools-DocumentBrowser-GitHubResource'
with: [ spec requires: #('NewTools-DocumentBrowser') ];
with: [ spec requires: #( #'NewTools-DocumentBrowser') ];
package: #'NewTools-DocumentBrowser-GitHubResource-Tests'
with: [ spec requires: #('NewTools-DocumentBrowser') ].
with: [ spec requires: #( #'NewTools-DocumentBrowser' ) ].

spec
group: 'Core' with: #('NewTools-DocumentBrowser');
group: 'Tests' with: #('Core' 'NewTools-DocumentBrowser-Tests' );
group: 'GitHubResource' with: #(
'NewTools-DocumentBrowser-GitHubResource'
'NewTools-DocumentBrowser-GitHubResource-Tests');
group: 'Core+Tests' with: #('Core' 'Tests')
group: 'Core' with: #(#'Microdown-RichTextPresenter' #'NewTools-DocumentBrowser');
group: 'Tests' with: #('Core' #'Microdown-RichTextPresenter-Tests' #'NewTools-DocumentBrowser-Tests' );
group: 'RichTextPresenter' with: #(#'Microdown-RichTextPresenter' #'Microdown-RichTextPresenter-Tests');
group: 'GitHubResource' with: #(#'NewTools-DocumentBrowser-GitHubResource' #'NewTools-DocumentBrowser-GitHubResource-Tests');
group: 'Core+Tests' with: #('Core' 'Tests' )
]
]

0 comments on commit 3ef22e1

Please sign in to comment.