-
Notifications
You must be signed in to change notification settings - Fork 0
Dev #155
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dev #155
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -1,6 +1,17 @@ | ||||||
| module.exports = { | ||||||
| branches: ["main", { name: "next", prerelease: true }, { name: "dev", prerelease: true }], | ||||||
| plugins: [ | ||||||
| [ | ||||||
| require.resolve("../../scripts/semrel-path-filter.cjs"), | ||||||
| { | ||||||
| paths: [ | ||||||
| "packages/ducdxf", | ||||||
| "packages/ducpy" | ||||||
| ], | ||||||
| analyzer: { preset: "conventionalcommits" }, | ||||||
| notes: { preset: "conventionalcommits" }, | ||||||
| }, | ||||||
| ], | ||||||
| "@semantic-release/commit-analyzer", | ||||||
| "@semantic-release/release-notes-generator", | ||||||
|
Comment on lines
15
to
16
|
||||||
| "@semantic-release/commit-analyzer", | |
| "@semantic-release/release-notes-generator", |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -4,7 +4,9 @@ module.exports = { | |||||
| [ | ||||||
| require.resolve("../../scripts/semrel-path-filter.cjs"), | ||||||
| { | ||||||
| path: "packages/ducjs", | ||||||
| paths: [ | ||||||
| "packages/ducjs" | ||||||
|
||||||
| "packages/ducjs" | |
| "packages/ducjs", |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -4,15 +4,19 @@ module.exports = { | |||||
| [ | ||||||
| require.resolve("../../scripts/semrel-path-filter.cjs"), | ||||||
| { | ||||||
| path: "packages/ducpdf", | ||||||
| paths: [ | ||||||
| "packages/ducpdf", | ||||||
| "packages/ducjs", | ||||||
| "packages/ducrs" | ||||||
|
||||||
| "packages/ducrs" | |
| "packages/ducrs", |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -4,7 +4,9 @@ module.exports = { | |||||
| [ | ||||||
| require.resolve("../../scripts/semrel-path-filter.cjs"), | ||||||
| { | ||||||
| path: "packages/ducpy", | ||||||
| paths: [ | ||||||
| "packages/ducpy" | ||||||
|
||||||
| "packages/ducpy" | |
| "packages/ducpy", |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -4,7 +4,9 @@ module.exports = { | |||||
| [ | ||||||
| require.resolve("../../scripts/semrel-path-filter.cjs"), | ||||||
| { | ||||||
| path: "packages/ducrs", | ||||||
| paths: [ | ||||||
| "packages/ducrs" | ||||||
|
||||||
| "packages/ducrs" | |
| "packages/ducrs", |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -15,6 +15,8 @@ | |||||
|
|
||||||
| > This library leverages the stable renderer from `ducpdf`, first converting the `duc` document to PDF format before transforming it into SVG using `pdf-into-svg`. This approach ensures high fidelity in the SVG output by utilizing the robust rendering capabilities of the PDF format. | ||||||
|
|
||||||
| > 💡 Maybe in the future we could refactor `ducpdf` to leverage the growing library [`hayro_svg`](https://docs.rs/hayro-svg/latest/hayro_svg/) to convert PDF to SVG more seamlessly instead of using `pdf-into-svg` (C# library). Reference: [hayro project](https://github.com/LaurenzV/hayro?tab=readme-ov-file) | ||||||
|
||||||
| > 💡 Maybe in the future we could refactor `ducpdf` to leverage the growing library [`hayro_svg`](https://docs.rs/hayro-svg/latest/hayro_svg/) to convert PDF to SVG more seamlessly instead of using `pdf-into-svg` (C# library). Reference: [hayro project](https://github.com/LaurenzV/hayro?tab=readme-ov-file) | |
| > 💡 Maybe in the future we could refactor `ducpdf` to leverage the growing library [`hayro-svg`](https://docs.rs/hayro-svg/latest/hayro_svg/) to convert PDF to SVG more seamlessly instead of using `pdf-into-svg` (C# library). Reference: [hayro project](https://github.com/LaurenzV/hayro?tab=readme-ov-file) |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,11 +4,14 @@ module.exports = { | |
| [ | ||
| require.resolve('../../scripts/semrel-path-filter.cjs'), | ||
| { | ||
| // relative to repo root | ||
| path: 'packages/ducsvg', | ||
| // pass through any analyzer/notes options you like | ||
| analyzer: { preset: 'conventionalcommits' }, | ||
| notes: { preset: 'conventionalcommits' }, | ||
| paths: [ | ||
| "packages/ducsvg", | ||
| "packages/ducpdf", | ||
| "packages/ducjs", | ||
| "packages/ducrs", | ||
| ], | ||
|
Comment on lines
+7
to
+12
|
||
| analyzer: { preset: "conventionalcommits" }, | ||
| notes: { preset: "conventionalcommits" }, | ||
| }, | ||
| ], | ||
| [ | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing trailing comma after the last array element. The codebase convention is to include trailing commas in array and object literals in JavaScript configuration files for better diff readability and consistency.