You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: HISTORY.md
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,10 @@
1
1
# History
2
2
3
+
## v6.2.0 2023 December 27
4
+
5
+
- Updated dependencies, [base files](https://github.com/bevry/base), and [editions](https://editions.bevry.me) using [boundation](https://github.com/bevry/boundation)
6
+
- Thank you to the sponsors: [Andrew Nesbitt](https://nesbitt.io), [Balsa](https://balsa.com), [Codecov](https://codecov.io/), [Poonacha Medappa](https://poonachamedappa.com), [Rob Morris](https://github.com/Rob-Morris), [Sentry](https://sentry.io), [Syntax](https://syntax.fm)
7
+
3
8
## v6.1.0 2023 December 6
4
9
5
10
- Updated dependencies, [base files](https://github.com/bevry/base), and [editions](https://editions.bevry.me) using [boundation](https://github.com/bevry/boundation)
Copy file name to clipboardExpand all lines: README.md
+68-61Lines changed: 68 additions & 61 deletions
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,9 @@
1
1
<!-- TITLE/ -->
2
2
3
-
<h1>unbounded</h1>
3
+
# unbounded
4
4
5
5
<!-- /TITLE -->
6
6
7
-
8
7
<!-- BADGES/ -->
9
8
10
9
<spanclass="badge-githubworkflow"><ahref="https://github.com/bevry/unbounded/actions?query=workflow%3Abevry"title="View the status of this project's GitHub Workflow: bevry"><imgsrc="https://github.com/bevry/unbounded/workflows/bevry/badge.svg"alt="Status of the GitHub Workflow: bevry" /></a></span>
@@ -25,7 +24,6 @@
25
24
26
25
<!-- /BADGES -->
27
26
28
-
29
27
<!-- DESCRIPTION/ -->
30
28
31
29
Function.prototype.bind replacement that provides an `unbounded` hidden property on the returned bounded function, that contains the original unbounded function
@@ -81,92 +79,83 @@ equal(boundedFunction.unbounded, myFunction, 'unbounded was correct')
81
79
82
80
<!-- INSTALL/ -->
83
81
84
-
<h2>Install</h2>
82
+
## Install
83
+
84
+
### [npm](https://npmjs.com"npm is a package manager for javascript")
85
85
86
-
<ahref="https://npmjs.com"title="npm is a package manager for javascript"><h3>npm</h3></a>
<ahref="https://unpkg.com"title="unpkg is a fast, global content delivery network for everything on npm"><h3>unpkg</h3></a>
102
+
### [unpkg](https://unpkg.com"unpkg is a fast, global content delivery network for everything on npm")
108
103
109
104
```html
110
105
<scripttype="module">
111
-
import*aspkgfrom'//unpkg.com/unbounded@^6.1.0'
106
+
import*aspkgfrom'//unpkg.com/unbounded@^6.2.0'
112
107
</script>
113
108
```
114
-
115
-
<ahref="https://jspm.io"title="Native ES Modules CDN"><h3>jspm</h3></a>
109
+
### [jspm](https://jspm.io"Native ES Modules CDN")
116
110
117
111
```html
118
112
<scripttype="module">
119
-
import*aspkgfrom'//dev.jspm.io/unbounded@6.1.0'
113
+
import*aspkgfrom'//dev.jspm.io/unbounded@6.2.0'
120
114
</script>
121
115
```
122
-
123
-
<h3><ahref="https://editions.bevry.me"title="Editions are the best way to produce and consume packages you care about.">Editions</a></h3>
124
-
125
-
<p>This package is published with the following editions:</p>
126
-
127
-
<ul><li><code>unbounded</code> aliases <code>unbounded/index.cjs</code> which uses the <ahref="https://github.com/bevry/editions"title="You can use the Editions Autoloader to autoload the appropriate edition for your consumers environment">Editions Autoloader</a> to automatically select the correct edition for the consumer's environment</li>
128
-
<li><code>unbounded/source/index.ts</code> is <ahref="https://www.typescriptlang.org/"title="TypeScript is a typed superset of JavaScript that compiles to plain JavaScript. ">TypeScript</a> source code with <ahref="https://babeljs.io/docs/learn-es2015/#modules"title="ECMAScript Modules">Import</a> for modules</li>
129
-
<li><code>unbounded/edition-browsers/index.js</code> is <ahref="https://www.typescriptlang.org/"title="TypeScript is a typed superset of JavaScript that compiles to plain JavaScript. ">TypeScript</a> compiled against ES2022 for web browsers with <ahref="https://babeljs.io/docs/learn-es2015/#modules"title="ECMAScript Modules">Import</a> for modules</li>
130
-
<li><code>unbounded/edition-es2022/index.js</code> is <ahref="https://www.typescriptlang.org/"title="TypeScript is a typed superset of JavaScript that compiles to plain JavaScript. ">TypeScript</a> compiled against ES2022 for <ahref="https://nodejs.org"title="Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine">Node.js</a> 21 with <ahref="https://nodejs.org/dist/latest-v5.x/docs/api/modules.html"title="Node/CJS Modules">Require</a> for modules</li>
131
-
<li><code>unbounded/edition-es5/index.js</code> is <ahref="https://www.typescriptlang.org/"title="TypeScript is a typed superset of JavaScript that compiles to plain JavaScript. ">TypeScript</a> compiled against ES5 for <ahref="https://nodejs.org"title="Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine">Node.js</a> 4 with <ahref="https://nodejs.org/dist/latest-v5.x/docs/api/modules.html"title="Node/CJS Modules">Require</a> for modules</li>
132
-
<li><code>unbounded/edition-es2022-esm/index.js</code> is <ahref="https://www.typescriptlang.org/"title="TypeScript is a typed superset of JavaScript that compiles to plain JavaScript. ">TypeScript</a> compiled against ES2022 for <ahref="https://nodejs.org"title="Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine">Node.js</a> 21 with <ahref="https://babeljs.io/docs/learn-es2015/#modules"title="ECMAScript Modules">Import</a> for modules</li>
133
-
<li><code>unbounded/edition-types/index.d.ts</code> is <ahref="https://www.typescriptlang.org/"title="TypeScript is a typed superset of JavaScript that compiles to plain JavaScript. ">TypeScript</a> compiled Types with <ahref="https://babeljs.io/docs/learn-es2015/#modules"title="ECMAScript Modules">Import</a> for modules</li>
134
-
<li><code>unbounded/edition-deno/index.ts</code> is <ahref="https://www.typescriptlang.org/"title="TypeScript is a typed superset of JavaScript that compiles to plain JavaScript. ">TypeScript</a> source code made to be compatible with <ahref="https://deno.land"title="Deno is a secure runtime for JavaScript and TypeScript, it is an alternative to Node.js">Deno</a></li></ul>
116
+
### [Editions](https://editions.bevry.me"Editions are the best way to produce and consume packages you care about.")
117
+
118
+
This package is published with the following editions:
119
+
-`unbounded` aliases `unbounded/index.cjs` which uses the [Editions Autoloader](https://github.com/bevry/editions"You can use the Editions Autoloader to autoload the appropriate edition for your consumers environment") to automatically select the correct edition for the consumer's environment
120
+
-`unbounded/source/index.ts` is [TypeScript](https://www.typescriptlang.org/"TypeScript is a typed superset of JavaScript that compiles to plain JavaScript.") source code with [Import](https://babeljs.io/docs/learn-es2015/#modules"ECMAScript Modules") for modules
121
+
-`unbounded/edition-browsers/index.js` is [TypeScript](https://www.typescriptlang.org/"TypeScript is a typed superset of JavaScript that compiles to plain JavaScript.") compiled against [ES2022](https://en.wikipedia.org/wiki/ES2022"ECMAScript 2022") for web browsers with [Import](https://babeljs.io/docs/learn-es2015/#modules"ECMAScript Modules") for modules
122
+
-`unbounded/edition-es2022/index.js` is [TypeScript](https://www.typescriptlang.org/"TypeScript is a typed superset of JavaScript that compiles to plain JavaScript.") compiled against [ES2022](https://en.wikipedia.org/wiki/ES2022"ECMAScript 2022") for [Node.js](https://nodejs.org"Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine") 6 || 8 || 10 || 12 || 14 || 16 || 18 || 20 || 21 with [Require](https://nodejs.org/dist/latest-v5.x/docs/api/modules.html"Node/CJS Modules") for modules
123
+
-`unbounded/edition-es5/index.js` is [TypeScript](https://www.typescriptlang.org/"TypeScript is a typed superset of JavaScript that compiles to plain JavaScript.") compiled against ES5 for [Node.js](https://nodejs.org"Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine") 4 || 6 || 8 || 10 || 12 || 14 || 16 || 18 || 20 || 21 with [Require](https://nodejs.org/dist/latest-v5.x/docs/api/modules.html"Node/CJS Modules") for modules
124
+
-`unbounded/edition-es2022-esm/index.js` is [TypeScript](https://www.typescriptlang.org/"TypeScript is a typed superset of JavaScript that compiles to plain JavaScript.") compiled against [ES2022](https://en.wikipedia.org/wiki/ES2022"ECMAScript 2022") for [Node.js](https://nodejs.org"Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine") 12 || 14 || 16 || 18 || 20 || 21 with [Import](https://babeljs.io/docs/learn-es2015/#modules"ECMAScript Modules") for modules
125
+
-`unbounded/edition-types/index.d.ts` is [TypeScript](https://www.typescriptlang.org/"TypeScript is a typed superset of JavaScript that compiles to plain JavaScript.") compiled Types with [Import](https://babeljs.io/docs/learn-es2015/#modules"ECMAScript Modules") for modules
126
+
-`unbounded/edition-deno/index.ts` is [TypeScript](https://www.typescriptlang.org/"TypeScript is a typed superset of JavaScript that compiles to plain JavaScript.") source code made to be compatible with [Deno](https://deno.land"Deno is a secure runtime for JavaScript and TypeScript, it is an alternative to Node.js")
135
127
136
128
<!-- /INSTALL -->
137
129
138
-
139
130
<!-- HISTORY/ -->
140
131
141
-
<h2>History</h2>
132
+
## History
142
133
143
-
<ahref="https://github.com/bevry/unbounded/blob/master/HISTORY.md#files">Discover the release history by heading on over to the <code>HISTORY.md</code> file.</a>
134
+
[Discover the release history by heading on over to the `HISTORY.md` file.](https://github.com/bevry/unbounded/blob/HEAD/HISTORY.md#files)
144
135
145
136
<!-- /HISTORY -->
146
137
138
+
<!-- BACKERS/ -->
147
139
148
-
<!-- CONTRIBUTE/ -->
149
-
150
-
<h2>Contribute</h2>
151
-
152
-
<ahref="https://github.com/bevry/unbounded/blob/master/CONTRIBUTING.md#files">Discover how you can contribute by heading on over to the <code>CONTRIBUTING.md</code> file.</a>
140
+
## Backers
153
141
154
-
<!-- /CONTRIBUTE -->
142
+
### Code
155
143
144
+
[Discover how to contribute via the `CONTRIBUTING.md` file.](https://github.com/bevry/unbounded/blob/HEAD/CONTRIBUTING.md#files)
<ul><li><ahref="https://balupton.com">Benjamin Lupton</a> — <ahref="https://github.com/bevry/unbounded/commits?author=balupton"title="View the GitHub contributions of Benjamin Lupton on repository bevry/unbounded">view contributions</a></li></ul>
154
+
#### Contributors
166
155
167
-
<h3>Sponsors</h3>
156
+
-[Benjamin Lupton](https://github.com/balupton) — [view contributions](https://github.com/bevry/unbounded/commits?author=balupton"View the GitHub contributions of Benjamin Lupton on repository bevry/unbounded")
168
157
169
-
No sponsors yet! Will you be the first?
158
+
### Finances
170
159
171
160
<spanclass="badge-githubsponsors"><ahref="https://github.com/sponsors/balupton"title="Donate to this project using GitHub Sponsors"><imgsrc="https://img.shields.io/badge/github-donate-yellow.svg"alt="GitHub Sponsors donate button" /></a></span>
172
161
<spanclass="badge-thanksdev"><ahref="https://thanks.dev/u/gh/bevry"title="Donate to this project using ThanksDev"><imgsrc="https://img.shields.io/badge/thanksdev-donate-yellow.svg"alt="ThanksDev donate button" /></a></span>
@@ -177,27 +166,45 @@ No sponsors yet! Will you be the first?
177
166
<spanclass="badge-crypto"><ahref="https://bevry.me/crypto"title="Donate to this project using Cryptocurrency"><imgsrc="https://img.shields.io/badge/crypto-donate-yellow.svg"alt="crypto donate button" /></a></span>
178
167
<spanclass="badge-paypal"><ahref="https://bevry.me/paypal"title="Donate to this project using Paypal"><imgsrc="https://img.shields.io/badge/paypal-donate-yellow.svg"alt="PayPal donate button" /></a></span>
179
168
180
-
<h3>Contributors</h3>
181
-
182
-
These amazing people have contributed code to this project:
183
-
184
-
<ul><li><ahref="https://balupton.com">Benjamin Lupton</a> — <ahref="https://github.com/bevry/unbounded/commits?author=balupton"title="View the GitHub contributions of Benjamin Lupton on repository bevry/unbounded">view contributions</a></li></ul>
185
-
186
-
<ahref="https://github.com/bevry/unbounded/blob/master/CONTRIBUTING.md#files">Discover how you can contribute by heading on over to the <code>CONTRIBUTING.md</code> file.</a>
169
+
#### Sponsors
170
+
171
+
-[Andrew Nesbitt](https://nesbitt.io) — Software engineer and researcher
172
+
-[Balsa](https://balsa.com) — We're Balsa, and we're building tools for builders.
173
+
-[Codecov](https://codecov.io/) — Empower developers with tools to improve code quality and testing.
174
+
-[Poonacha Medappa](https://poonachamedappa.com)
175
+
-[Rob Morris](https://github.com/Rob-Morris)
176
+
-[Sentry](https://sentry.io) — Real-time crash reporting for your web apps, mobile apps, and games.
0 commit comments