Releases: ipikuka/remark-flexible-paragraphs
Releases · ipikuka/remark-flexible-paragraphs
v1.3.3
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
inlineSourcesinto tsconfig, and removing "src/" directory fromfilesinpackage.json - Add
skipLibCheckandesModuleInteropto tsconfig - Add
declarationMapto tsconfig - Add
.tsbuildinfoto.npmignore - Update github actions
- Update devDependencies
- Update
eslintto version 10 - Update eslint config using
defineConfiginstead oftseslint.config - Add a sponsorship banner into
README.md - Add a new remark plugin to plugin list in
README.md
v1.3.2
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
Only update devDependencies
v1.3.0
The changes made by @talatkuyuk:
- Add
unifiedinto peerDependencies - Update dependencies and devDependencies
- Migrate from jest to
vitestv3.2 - Migrate
eslintv8 to v9 and apply flat config - Update
.prettierrc - Add
.editorconfigfile - 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
The changes made by @talatkuyuk
- made refinements in the code
- made refinements in the types
- added a type namely
Wrapperby extending the@types/mdast - updated the dependencies
- added
package-lock.jsonon behalf ofnpm ciin 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
.npmrcfile - 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
srcdirectory into files inpackage.jsonfor 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-formatfor the outputs in the tests - updated README
- corrected the config settings ensuring the package is for ESM only
v1.0.0
initial release !