tamedevil 0.0.0-beta.1 → 0.0.0-beta.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/CHANGELOG.md +26 -0
  2. package/README.md +8 -8
  3. package/package.json +11 -11
package/CHANGELOG.md CHANGED
@@ -1,5 +1,31 @@
1
1
  # tamedevil
2
2
 
3
+ ## 0.0.0-beta.3
4
+
5
+ ### Patch Changes
6
+
7
+ - [#514](https://github.com/graphile/crystal-pre-merge/pull/514)
8
+ [`c9848f693`](https://github.com/graphile/crystal-pre-merge/commit/c9848f6936a5abd7740c0638bfb458fb5551f03b)
9
+ Thanks [@benjie](https://github.com/benjie)! - Update package.json repository
10
+ information
11
+
12
+ - Updated dependencies
13
+ [[`c9848f693`](https://github.com/graphile/crystal-pre-merge/commit/c9848f6936a5abd7740c0638bfb458fb5551f03b)]:
14
+ - @graphile/lru@5.0.0-beta.3
15
+
16
+ ## 0.0.0-beta.2
17
+
18
+ ### Patch Changes
19
+
20
+ - [#496](https://github.com/benjie/crystal/pull/496)
21
+ [`c9bfd9892`](https://github.com/benjie/crystal/commit/c9bfd989247f9433fb5b18c5175c9d8d64cd21a1)
22
+ Thanks [@benjie](https://github.com/benjie)! - Update dependencies (sometimes
23
+ through major versions).
24
+
25
+ - Updated dependencies
26
+ [[`c9bfd9892`](https://github.com/benjie/crystal/commit/c9bfd989247f9433fb5b18c5175c9d8d64cd21a1)]:
27
+ - @graphile/lru@5.0.0-beta.2
28
+
3
29
  ## 0.0.0-beta.1
4
30
 
5
31
  ### Patch Changes
package/README.md CHANGED
@@ -43,9 +43,9 @@ hood.
43
43
 
44
44
  ## Crowd-funded open-source software
45
45
 
46
- To help us develop this software sustainably under the MIT license, we ask all
47
- individuals and businesses that use it to help support its ongoing maintenance
48
- and development via sponsorship.
46
+ To help us develop this software sustainably, we ask all individuals and
47
+ businesses that use it to help support its ongoing maintenance and development
48
+ via sponsorship.
49
49
 
50
50
  ### [Click here to find out more about sponsors and sponsorship.](https://www.graphile.org/sponsor/)
51
51
 
@@ -54,12 +54,12 @@ And please give some love to our featured sponsors 🤩:
54
54
  <table><tr>
55
55
  <td align="center"><a href="https://www.the-guild.dev/"><img src="https://graphile.org/images/sponsors/theguild.png" width="90" height="90" alt="The Guild" /><br />The Guild</a> *</td>
56
56
  <td align="center"><a href="https://dovetailapp.com/"><img src="https://graphile.org/images/sponsors/dovetail.png" width="90" height="90" alt="Dovetail" /><br />Dovetail</a> *</td>
57
- <td align="center"><a href="https://qwick.com/"><img src="https://graphile.org/images/sponsors/qwick.png" width="90" height="90" alt="Qwick" /><br />Qwick</a> *</td>
58
57
  <td align="center"><a href="https://www.netflix.com/"><img src="https://graphile.org/images/sponsors/Netflix.png" width="90" height="90" alt="Netflix" /><br />Netflix</a> *</td>
59
- </tr><tr>
60
58
  <td align="center"><a href=""><img src="https://graphile.org/images/sponsors/chadf.png" width="90" height="90" alt="Chad Furman" /><br />Chad Furman</a> *</td>
59
+ </tr><tr>
61
60
  <td align="center"><a href="https://stellate.co/"><img src="https://graphile.org/images/sponsors/Stellate.png" width="90" height="90" alt="Stellate" /><br />Stellate</a> *</td>
62
61
  <td align="center"><a href="https://www.accenture.com/"><img src="https://graphile.org/images/sponsors/accenture.svg" width="90" height="90" alt="Accenture" /><br />Accenture</a> *</td>
62
+ <td align="center"><a href="https://microteam.io/"><img src="https://graphile.org/images/sponsors/micro.png" width="90" height="90" alt="We Love Micro" /><br />We Love Micro</a> *</td>
63
63
  </tr></table>
64
64
 
65
65
  <em>\* Sponsors the entire Graphile suite</em>
@@ -69,13 +69,13 @@ And please give some love to our featured sponsors 🤩:
69
69
  ## Installation
70
70
 
71
71
  ```
72
- yarn add tamedevil
72
+ yarn add tamedevil@beta
73
73
  ```
74
74
 
75
75
  or
76
76
 
77
77
  ```
78
- npm install --save tamedevil
78
+ npm install --save tamedevil@beta
79
79
  ```
80
80
 
81
81
  ## Importing
@@ -322,7 +322,7 @@ If `obj` is potentially expensive code and you need to reference it multiple
322
322
  times (e.g. `` te`(${obj}.foo === 3 ? ${obj}.bar : ${obj}.baz)` ``) then you can
323
323
  use `tmp` to create a temporary variable that stores reference to it and return
324
324
  the result of calling `callback` passing this temporary reference. E.g.
325
- `` te.tmp(obj, tmp => te`(${tmp}.foo === 3 ? ${tmp}.bar : ${tmp}.baz)`) `` means
325
+ ``te.tmp(obj, tmp => te`(${tmp}.foo === 3 ? ${tmp}.bar : ${tmp}.baz)`)`` means
326
326
  that the potentially expensive expression in the original `obj` variable only
327
327
  need to be evaluated once, not 3 times.
328
328
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tamedevil",
3
- "version": "0.0.0-beta.1",
3
+ "version": "0.0.0-beta.3",
4
4
  "description": "Build and evaluate JavaScript strings safely via tagged template literals",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -13,7 +13,7 @@
13
13
  },
14
14
  "repository": {
15
15
  "type": "git",
16
- "url": "git+https://github.com/graphile/heart.git"
16
+ "url": "git+https://github.com/graphile/crystal.git"
17
17
  },
18
18
  "keywords": [
19
19
  "eval",
@@ -31,21 +31,21 @@
31
31
  "author": "Benjie Gillam <benjie@jemjie.com>",
32
32
  "license": "MIT",
33
33
  "bugs": {
34
- "url": "https://github.com/graphile/heart/issues"
34
+ "url": "https://github.com/graphile/crystal/issues"
35
35
  },
36
- "homepage": "https://github.com/graphile/heart/tree/main/utils/tamedevil",
36
+ "homepage": "https://github.com/graphile/crystal/tree/main/utils/tamedevil",
37
37
  "devDependencies": {
38
- "@types/debug": "4.1.7",
39
- "@types/jest": "^27.5.1",
40
- "@types/node": "18.15.5",
41
- "jest": "^28.1.3",
38
+ "@types/debug": "4.1.8",
39
+ "@types/jest": "^29.5.4",
40
+ "@types/node": "20.5.7",
41
+ "jest": "^29.6.4",
42
42
  "markdown-doctest": "^1.1.0",
43
43
  "ts-node": "^10.9.1",
44
- "typescript": "^5.0.4"
44
+ "typescript": "^5.2.2"
45
45
  },
46
46
  "dependencies": {
47
- "@graphile/lru": "^5.0.0-beta.1",
48
- "tslib": "^2.5.0"
47
+ "@graphile/lru": "^5.0.0-beta.3",
48
+ "tslib": "^2.6.2"
49
49
  },
50
50
  "files": [
51
51
  "dist"