Skip to content

Releases: ipikuka/remark-flexible-paragraphs

v1.3.3

19 Feb 10:45

Choose a tag to compare

The changes made by @talatkuyuk:

  • Update unist-util-visit
  • Update output directory as "dist" instead of "dist/esm"
  • Update export conditions in package.json
  • Update npm scripts in package.json
  • Update sourcemaps by adding inlineSources into tsconfig, and removing "src/" directory from files in package.json
  • Add skipLibCheck and esModuleInterop to tsconfig
  • Add declarationMap to tsconfig
  • Add .tsbuildinfo to .npmignore
  • Update github actions
  • Update devDependencies
  • Update eslint to version 10
  • Update eslint config using defineConfig instead of tseslint.config
  • Add a sponsorship banner into README.md
  • Add a new remark plugin to plugin list in README.md

v1.3.2

31 Oct 21:11

Choose a tag to compare

The changes made by @talatkuyuk:

  • Update devDependencies
  • Update vite config (vitest@4)
  • Fix test coverage 100%
  • Make refinements in the code
  • Chore: typing corrections in README.md
  • Add sponsorship section in README.md

v1.3.1

07 Sep 20:01

Choose a tag to compare

Only update devDependencies

v1.3.0

05 Jun 12:07

Choose a tag to compare

The changes made by @talatkuyuk:

  • Add unified into peerDependencies
  • Update dependencies and devDependencies
  • Migrate from jest to vitest v3.2
  • Migrate eslint v8 to v9 and apply flat config
  • Update .prettierrc
  • Add .editorconfig file
  • Update github actions
  • Fix eslint errors
  • Fix package-lock.json
  • Update the copyright date in the LICENSE
  • Update keywords in package.json
  • Update README.md
    • Update badges/links
    • Chore corrections
    • Remove keywords
    • Add plugins which I recently developed into list

v1.2.0

17 Mar 21:36

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

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

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

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

Choose a tag to compare

initial release !