Skip to content

Releases: ipikuka/remark-flexible-paragraphs

v1.2.0

17 Mar 21:36
Compare
Choose a tag to compare

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 of npm 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

26 Dec 22:04
Compare
Choose a tag to compare

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

16 Jun 09:51
Compare
Choose a tag to compare
  • added src directory into files in package.json for supporting source map
  • added the list of the remark packages I have published into README.md

v1.0.1

26 Feb 19:07
Compare
Choose a tag to compare

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

19 Feb 16:13
Compare
Choose a tag to compare

initial release !