Closed nkovacs closed 7 years ago
With these dependencies:
"cldr-data": "^30.0.0", "globalize": "^1.3.0-alpha.3", "globalize-compiler": "^0.3.0-alpha.3"
and this code:
var Globalize = require( "globalize" ); Globalize.load( require( "cldr-data" ).entireSupplemental() ); Globalize.load( require( "cldr-data" ).entireMainFor( "en", "ar-AE", "ar-SA" ) ); require('globalize-compiler').compile([ Globalize( "en" ).dateFormatter({ skeleton: "GyMMMd" }) ], {});
I get Error: No formatters or parsers has been provided. This works in 1.2.0.
The compiler test in #721 also fails because of this.
Fixed by ee74907c15fc86be47ee21701520d9fb914b4822, thanks.
Thanks for the note and for closing.
With these dependencies:
and this code:
I get Error: No formatters or parsers has been provided. This works in 1.2.0.
The compiler test in #721 also fails because of this.