codefrau / SqueakJS

A Squeak Smalltalk VM in Javascript
https://squeak.js.org
MIT License
364 stars 75 forks source link

Extend baseline: add all packages, remove testing prefix from name #156

Closed LinqLover closed 5 months ago

LinqLover commented 5 months ago

This is for other projects that want to load some of the Smalltalk packages in this repository conveniently. E.g., JSBridge-Core can be installed using:

Metacello new
    baseline: 'SqueakJS';
    repository: 'github://LinqLover/SqueakJS:extend-baseline/utils';
    get; "for updates"
    load: 'JSBridge-Core'.

The default behavior of the baseline (i.e., a simple load) is not changed.