ipa-core 1.3.2 → 1.3.4

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/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  ipa-core License v1.3
2
2
 
3
- Copyright (c) 2026 Charlie Blair
3
+ Copyright (c) 2026 Cody Bruno
4
4
 
5
5
  1. Definitions
6
6
 
package/core.js CHANGED
@@ -124,7 +124,9 @@ const core = {
124
124
  'o': { type: "vowel", features: { height: "close-mid", backness: "back", rounding: "rounded" }, airstream: "pulmonic" },
125
125
  'ɔ': { type: "vowel", features: { height: "open-mid", backness: "back", rounding: "rounded" }, airstream: "pulmonic" },
126
126
  'ɑ': { type: "vowel", features: { height: "open", backness: "back", rounding: "unrounded" }, airstream: "pulmonic" },
127
- 'ɒ': { type: "vowel", features: { height: "open", backness: "back", rounding: "rounded" }, airstream: "pulmonic" }
127
+ 'ɒ': { type: "vowel", features: { height: "open", backness: "back", rounding: "rounded" }, airstream: "pulmonic" },
128
+ 'ʌ': { type: "vowel", features: { height: "open-mid", backness: "back", rounding: "unrounded" }, airstream: "pulmonic" },
129
+ 'a': { type: "vowel", features: { height: "open", backness: "front", rounding: "unrounded" }, airstream: "pulmonic" }
128
130
 
129
131
  }
130
132
 
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env node
1
+ #!/usr/bin/env node
2
2
  // fill-orthography.cjs
3
3
 
4
4
  const fs = require('fs');
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env node
1
+ #!/usr/bin/env node
2
2
  // generate-config-cli.cjs
3
3
 
4
4
  const fs = require('fs');
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env node
1
+ #!/usr/bin/env node
2
2
  // generate-conlang-cli.cjs
3
3
 
4
4
  const fs = require('fs');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ipa-core",
3
- "version": "1.3.2",
3
+ "version": "1.3.4",
4
4
  "description": "Language-agnostic IPA core with features",
5
5
  "repository": "github:Cody253/ipa-core",
6
6
  "homepage": "https://github.com/Cody253/ipa-core#readme",
package/rules.js CHANGED
@@ -81,9 +81,6 @@ const rules = {
81
81
  },
82
82
 
83
83
  diphthong: {
84
- requiresAll: [
85
- { type: "vowel" }
86
- ],
87
84
  minLength: 2
88
85
  },
89
86