Redefining dependencies.

This commit is contained in:
Offray Vladimir Luna Cárdenas 2022-07-24 15:50:32 -05:00
parent c984b4768d
commit 5200e87216
1 changed files with 12 additions and 2 deletions

View File

@ -13,12 +13,22 @@ BaselineOfTiddlyWikiPharo >> baseline: spec [
"Dependencies"
spec baseline: 'ZTimestamp' with: [ spec repository: 'github://svenvc/ztimestamp/repository' ].
self xmlParserHTML: spec.
spec baseline: 'Mustache' with: [ spec repository: 'github://noha/mustache/repository' ].
self miniDocs: spec.
"Packages"
spec package: 'TiddlyWiki' with: [ spec requires: #('ZTimestamp' 'XMLParserHTML' 'Mustache') ]
spec package: 'TiddlyWiki' with: [ spec requires: #('ZTimestamp' 'XMLParserHTML' 'MiniDocs') ]
]
]
{ #category : #accessing }
BaselineOfTiddlyWikiPharo >> miniDocs: spec [
| repo |
repo := ExoRepo new
repository: 'https://code.tupale.co/Offray/MiniDocs'.
repo load.
spec baseline: 'MiniDocs' with: [ spec repository: 'gitlocal://', repo local fullName ]
]
{ #category : #accessing }
BaselineOfTiddlyWikiPharo >> projectClass [
^ MetacelloCypressBaselineProject