@@ -4,6 +4,7 @@ import { dependencySatisfies, importSync, macroCondition } from '@embroider/macr
4
4
5
5
import { DEPRECATE_EMBER_INFLECTOR } from '@warp-drive/build-config/deprecations' ;
6
6
7
+ import { defaultRules as WarpDriveDefaults } from './-private/string/inflections' ;
7
8
import { irregular , plural , singular , uncountable } from './string' ;
8
9
9
10
if ( DEPRECATE_EMBER_INFLECTOR ) {
@@ -44,11 +45,22 @@ if (DEPRECATE_EMBER_INFLECTOR) {
44
45
// lower cased string
45
46
uncountable : Record < string , boolean > ;
46
47
} ;
48
+
49
+ // ember-inflector mutates the default rules arrays
50
+ // with user supplied rules, so we keep track of what
51
+ // is default via our own list.
52
+ const defaultPluralKeys = new Set < string > ( ) ;
53
+ const defaultSingularKeys = new Set < string > ( ) ;
54
+ WarpDriveDefaults . plurals . forEach ( ( [ regex ] ) => {
55
+ defaultPluralKeys . add ( regex . toString ( ) ) ;
56
+ } ) ;
57
+ WarpDriveDefaults . singular . forEach ( ( [ regex ] ) => {
58
+ defaultSingularKeys . add ( regex . toString ( ) ) ;
59
+ } ) ;
60
+
47
61
const { defaultRules } = Inflector as unknown as { defaultRules : DefaultRules } ;
48
62
const { rules } = inflector as unknown as { rules : InternalRules } ;
49
63
50
- const pluralMap = new Map ( defaultRules . plurals ) ;
51
- const singularMap = new Map ( defaultRules . singular ) ;
52
64
const irregularMap = new Map < string , string > ( ) ;
53
65
const toIgnore = new Set < string > ( ) ;
54
66
const uncountableSet = new Set ( defaultRules . uncountable ) ;
@@ -65,7 +77,7 @@ if (DEPRECATE_EMBER_INFLECTOR) {
65
77
66
78
// load plurals
67
79
rules . plurals . forEach ( ( [ regex , replacement ] ) => {
68
- if ( pluralMap . has ( regex ) ) {
80
+ if ( defaultPluralKeys . has ( regex . toString ( ) ) ) {
69
81
return ;
70
82
}
71
83
@@ -89,7 +101,7 @@ if (DEPRECATE_EMBER_INFLECTOR) {
89
101
90
102
// load singulars
91
103
rules . singular . forEach ( ( [ regex , replacement ] ) => {
92
- if ( singularMap . has ( regex ) ) {
104
+ if ( defaultSingularKeys . has ( regex . toString ( ) ) ) {
93
105
return ;
94
106
}
95
107
0 commit comments