resFactory / factory

Resource Factory is a universal approach to originating, refining, and rendering Markdown, HTML, type-safe SQL, or other assets that could comprise static sites or engineering artifacts.
GNU Affero General Public License v3.0
0 stars 3 forks source link

Switch from Justfile to Taskfile #69

Open shah opened 2 years ago

shah commented 2 years ago

Replace Justfile with Taskfile for OS-neutral portable tasks.

For example, this replaces just maintain:

deno-task update-deno-deps

We need to replace the rest.

shah commented 2 years ago

With the latest commit I've created a much nicer, type-safe, and "hookable" tasks system based on an EventEmitter strategy.

shah commented 2 years ago

Removed almost all Justfile in favor of type-safe Deno. Only core/design-system/lightning/Justfile left, should be easy to rewrite it soon. Instead of putting acquire-slds-icons into a Taskfile.ts, though, just move it into lightning.ts as a method like acquireAssets or similar and the call that method from Taskfile.ts if necessary. acquireAssets could be a common Design System method across all DSs.