Releases: ipikuka/remark-flexible-paragraphs
Releases · ipikuka/remark-flexible-paragraphs
v1.2.0
The changes made by @talatkuyuk
- made refinements in the code
- made refinements in the types
- added a type namely
Wrapper
by extending the@types/mdast
- updated the dependencies
- added
package-lock.json
on behalf ofnpm ci
in github actions - added npm provenance
- added a github action for commits and pull requests
- added type coverage 100%
- added test coverage 100%
- added codecov connection
- updated the README.md (badges, plugin list, links, options sections)
- added a test util, and updated all the tests
v1.0.4
Release notes and the changes made by @talatkuyuk
- refactored the
.npmrc
file - updated the dependencies and fixed the type issues
- refactored the
tsconfig.json
- updated the
README.md
- made refinement and refactored code styles
Before the option wrapperProperties
was:
// type TPropertyFunction = (align?: "center" | "left" | "right" | "justify", classifications?: string[]) => Record<string,unknown>;
wrapperProperties?: TPropertyFunction;
Now the option wrapperProperties
is:
// type Alignment = "center" | "left" | "right" | "justify";
// type PropertyFunction = (alignment?: Alignment, classifications?: string[]) => Record<string,unknown>;
wrapperProperties?: PropertyFunction;
v1.0.2
- added
src
directory into files inpackage.json
for supporting source map - added the list of the remark packages I have published into
README.md
v1.0.1
Made some changes by @talatkuyuk
- added
rehype-format
for the outputs in the tests - updated README
- corrected the config settings ensuring the package is for ESM only
v1.0.0
initial release !