@scrabble-solver/constants 2.6.1 → 2.7.2

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.
package/build/index.js CHANGED
@@ -34,4 +34,4 @@ exports.CONSONANTS = [
34
34
  'ź',
35
35
  'ż',
36
36
  ];
37
- exports.VOWELS = ['a', 'ą', 'e', 'ę', 'i', 'o', 'ó', 'u', 'y'];
37
+ exports.VOWELS = ['a', 'ą', 'ä', 'e', 'ę', 'i', 'o', 'ó', 'ö', 'u', 'ü', 'y'];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scrabble-solver/constants",
3
- "version": "2.6.1",
3
+ "version": "2.7.2",
4
4
  "description": "Scrabble Solver 2 - Constants",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
@@ -11,7 +11,7 @@
11
11
  "author": {
12
12
  "name": "Kamil Mielnik",
13
13
  "email": "kamil.adam.mielnik@gmail.com",
14
- "url": "http://kamilmielnik.com/"
14
+ "url": "https://kamilmielnik.com/"
15
15
  },
16
16
  "license": "CC-BY-NC-ND-4.0",
17
17
  "bugs": {
@@ -23,5 +23,5 @@
23
23
  "clean": "rimraf build/ node_modules/",
24
24
  "clean:force": "npm run clean && rimraf package-lock.json"
25
25
  },
26
- "gitHead": "4a68377171a5539b33cba4fbcc47fc858d29903a"
26
+ "gitHead": "f1a2823c32eedaeff30cf8315e20427574fc97b7"
27
27
  }
package/src/index.ts CHANGED
@@ -37,4 +37,4 @@ export const CONSONANTS = [
37
37
  'ż',
38
38
  ];
39
39
 
40
- export const VOWELS = ['a', 'ą', 'e', 'ę', 'i', 'o', 'ó', 'u', 'y'];
40
+ export const VOWELS = ['a', 'ą', 'ä', 'e', 'ę', 'i', 'o', 'ó', 'ö', 'u', 'ü', 'y'];