Bogdan Chadkin

Results 48 issues of Bogdan Chadkin

I like this project a lot but I forced to use [Numeral-js](https://github.com/adamwdraper/Numeral-js) which has ordinal numbers support like `1st`, `2nd` etc. Is there plan to support it? I can send...

Ref https://github.com/toji/gl-matrix/issues/389 Emitted all types to directory instead of single file. This way each sub package can specify own "types" field. Though there are problems - tsc do not emit...

There is in the end unused and not existing import. Seems like generated by mistake https://unpkg.com/[email protected]/dist/es/WindowScroller/utils/onScroll.js ```js import { bpfrpt_proptype_WindowScroller } from '../WindowScroller.js'; ``` /cc @brigand

**What**: cosmiconfig is a massive package which recently got a small alternative without dependencies lilconfig. https://github.com/antonk52/lilconfig https://packagephobia.com/result?p=cosmiconfig https://packagephobia.com/result?p=lilconfig Though still a big part of cosmiconfig is `yaml` package. https://packagephobia.com/result?p=yaml This...

Lodash is quite big package and often overused for things available natively. In this diff I removed it from package dependencies and left only for tests.

I found this project use selfsigned package to generate certificates. I recently played with it in vite and found it does not generate valid certificates. Chrome shows red wall. Is...

enhancement

The code is taken from https://github.com/svg/svgo/pull/976, refactored with new api, covered types and simplified. Plugin has no dependencies so can be used without changing. ``` const inlineDefs = require('./inlineDefs.js'); module.exports...

Just a list of possible changes - [x] replace JSAPI class with set of utilities - [x] drop createContentItem which creates JSAPI instance from public api - [x] remove extendDefaultPlugins...

enhancement

There are a few benefits of custom implementation - csstree instead of css-what parser - 9 less dependecies - only standard features are supported (css-select has :parent from jquery) -...

Ref https://github.com/svg/svgo/pull/1508 The new plugin removes xmlns:xlink from and replaces xlink:href with href attribute. xlink namespace is obsolete in SVG 2. Href attribute is recommended replacement to xlink:href. This plugin...