cspell-trie 6.21.0 → 6.22.0

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 (2) hide show
  1. package/README.md +30 -6
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -114,13 +114,37 @@ each line can only refer to previous lines.
114
114
 
115
115
  How to walk the data to see if "talks" is in it.
116
116
 
117
- 1. Start with the root at offset 8.
118
- 2. t found goto 7
119
- 3. a found goto 6
120
- 4. l found goto 5
121
- 5. k found goto 4
122
- 6. s found stop (goto 0 is stop).
117
+ 1. Start with the root at offset 8.
118
+ 1. t found goto 7
119
+ 1. a found goto 6
120
+ 1. l found goto 5
121
+ 1. k found goto 4
122
+ 1. s found stop (goto 0 is stop).
123
123
 
124
124
  <!---
125
125
  cspell:word DAFSA DAWG
126
126
  -->
127
+
128
+ ## CSpell for Enterprise
129
+
130
+ <!--- @@inject: ../../static/tidelift.md --->
131
+
132
+ Available as part of the Tidelift Subscription.
133
+
134
+ The maintainers of cspell and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source packages you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact packages you use. [Learn more.](https://tidelift.com/subscription/pkg/npm-cspell?utm_source=npm-cspell&utm_medium=referral&utm_campaign=enterprise&utm_term=repo)
135
+
136
+ <!--- @@inject-end: ../../static/tidelift.md --->
137
+
138
+ <!--- @@inject: ../../static/footer.md --->
139
+
140
+ <br/>
141
+
142
+ ---
143
+
144
+ <p align="center">
145
+ Brought to you by <a href="https://streetsidesoftware.com" title="Street Side Software">
146
+ <img width="16" alt="Street Side Software Logo" src="https://i.imgur.com/CyduuVY.png" /> Street Side Software
147
+ </a>
148
+ </p>
149
+
150
+ <!--- @@inject-end: ../../static/footer.md --->
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cspell-trie",
3
- "version": "6.21.0",
3
+ "version": "6.22.0",
4
4
  "description": "Trie Data Structure reader for cspell",
5
5
  "bin": {
6
6
  "cspell-trie": "bin.js"
@@ -41,15 +41,15 @@
41
41
  "homepage": "https://github.com/streetsidesoftware/cspell#readme",
42
42
  "dependencies": {
43
43
  "commander": "^10.0.0",
44
- "cspell-trie-lib": "6.21.0",
44
+ "cspell-trie-lib": "6.22.0",
45
45
  "gensequence": "^4.0.3"
46
46
  },
47
47
  "engines": {
48
48
  "node": ">=14"
49
49
  },
50
50
  "devDependencies": {
51
- "@types/node": "^18.11.18",
51
+ "@types/node": "^18.11.19",
52
52
  "jest": "^29.4.1"
53
53
  },
54
- "gitHead": "67b37de0cbcbe62feb8fb6ec95adad1275c14caa"
54
+ "gitHead": "a133874ed7590cbe140f5067cfa80db84b644a5d"
55
55
  }