Update render script and Makefile

This commit is contained in:
Jonas Zeunert
2024-04-22 21:54:39 +02:00
parent 2d63fe63cd
commit 4d0cd768f7
10975 changed files with 47095 additions and 4031084 deletions

View File

@@ -2,12 +2,12 @@

 Awesome Promises !Awesome (https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg) (https://github.com/sindresorhus/awesome)
 Awesome Promises !Awesome (https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg) (https://github.com/sindresorhus/awesome)
▐ A curated list of useful resources for JavaScript Promises
Inspired by the awesome (https://github.com/sindresorhus/awesome) list thing. Not to be confused with other awesome promises like "I promise you a million dollars" or "I promise you'll stay fit and never have to
go to the gym again".
Inspired by the awesome (https://github.com/sindresorhus/awesome) list thing. Not to be confused with other awesome promises like "I promise you a million dollars" or "I promise you'll stay 
fit and never have to go to the gym again".
Table of Contents
@@ -42,7 +42,8 @@
⟡ Promise Ponderings, (Anti-)Patterns, and Apologies
 (https://sdgluck.github.io/2015/08/24/promise-ponderings-patterns-apologies/) - Promise behaviour demonstrated and explained by common questions and their answers.
⟡ Javascript Promises...In Wicked Detail (http://www.mattgreer.org/articles/promises-in-wicked-detail/) - Recreate the promise implementation
⟡ Writing Promise-Using Specifications (https://www.w3.org/2001/tag/doc/promises-guide) - "This document gives guidance on how to write specifications that create, accept, or manipulate promises"
⟡ Writing Promise-Using Specifications
 (https://www.w3.org/2001/tag/doc/promises-guide) - "This document gives guidance on how to write specifications that create, accept, or manipulate promises"
⟡ Async functions - making promises friendly (https://developers.google.com/web/fundamentals/getting-started/primers/async-functions)
References
@@ -78,8 +79,8 @@
⟡ any-promise (https://github.com/kevinbeaty/any-promise) - Loads the first available implementation. Safe for browserify.
Convenience Utilities
Native and strictly spec-compliant promises are awesome for compatibility, future-proofness, library authors, and browsers. However, libraries like bluebird patch goodies onto the Promise constructor and 
prototype. Solution? tiny modules of course!
Native and strictly spec-compliant promises are awesome for compatibility, future-proofness, library authors, and browsers. However, libraries like bluebird patch goodies onto the Promise 
constructor and prototype. Solution? tiny modules of course!
sindresorhus's many Promise utilities (see notes (https://github.com/sindresorhus/promise-fun))
⟡ delay (https://github.com/sindresorhus/delay) - Delay a promise a specified amount of time.