BONNAURE Olivier
BONNAURE Olivier
### Description npm styles order is ignored ``` npm: { styles: { uikit: [ 'dist/css/uikit.almost-flat.css', 'dist/css/components/datepicker.almost-flat.css', 'dist/css/components/form-select.almost-flat.css', ] } } ``` ### Expected behavior Sorted using array order (css 1,...
### Scope & Purpose Add Precision to AQL Method ``` RETURN ROUND(1.12345) // 1 RETURN ROUND(1.12345,1) // 1.1 RETURN ROUND(1.12345,2) // 1.12 RETURN ROUND(1.12345,3) // 1.123 RETURN ROUND(1.12345,4) // 1.1235...
It take around 4s to calculate clustering with 756 items on my map... It is normal ?
I made https://fasty.ovh with lapis for the frontend. It's an open source CMS. Github: https://github.com/solisoft/fasty
Fix fn.dict which should be fn.dict_name Add host to cache key name for multi-tenants applications
Do you plan to implement regexp ?
I had to modify ~/Library/Application Support/TextMate/PlugIns/AckMate.tmplugin/Contents/Resources/ackmate_ack (line 1196) to add haml Thank you
Let say I have ``` type authors { _key: String! name: String! } type Query { authors(name: String, _key: String): authors } ``` How can I get all authors ?...
With brunch 2.8.2 it works like a charm, but with brunch 2.9.1 it seems to reload after the preCompile hook. here my brunch-config ```` module.exports = { npm: { globals:...