ducsvg 3.8.3 → 3.8.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +3 -12
  2. package/package.json +4 -2
package/README.md CHANGED
@@ -22,22 +22,13 @@ For detailed documentation, including all available types and utility functions,
22
22
 
23
23
  ## Tools
24
24
 
25
- - [Playground](https://ducflair.com/core): Experiment with the `duc` format in a live environment.
25
+ - [Playground](https://scopture.com/w/hollow): Experiment with the `duc` format in a live environment.
26
26
  - [Documentation](https://duc.ducflair.com): Comprehensive guides and API references.
27
27
 
28
28
  ## Contributing
29
29
 
30
- At the moment we are not accepting contributions to this package. However, we welcome feedback and suggestions for future improvements. Feel free to open an issue or contact us at [Ducflair Support](https://www.ducflair.com/support).
30
+ Feel free to open an issue or contact us at [Ducflair Support](https://www.ducflair.com/support).
31
31
 
32
32
  ## License
33
33
 
34
- This project is licensed under the MIT License. See the [LICENSE](./LICENSE) file for more details.
35
-
36
-
37
- ## Commit Message Guidelines
38
-
39
- To ensure smooth releases with semantic-release, please follow [these guidelines](https://semantic-release.gitbook.io/semantic-release#how-does-it-work).
40
-
41
- ---
42
-
43
- *The duc format and libraries are constantly evolving, aiming to set new standards in the 2D CAD industry. Be a part of this transformation and help shape the future of design technology!*
34
+ This project is licensed under the MIT License. See the [LICENSE](./LICENSE) file for more details.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ducsvg",
3
- "version": "3.8.3",
3
+ "version": "3.8.4",
4
4
  "description": "Adapter for converting duc CAD documents to SVG. Built on top of ducjs.",
5
5
  "private": false,
6
6
  "type": "module",
@@ -19,7 +19,9 @@
19
19
  "default": "./pkg/pdf2svg.js"
20
20
  }
21
21
  },
22
- "sideEffects": false,
22
+ "sideEffects": [
23
+ "./dist/pdf2svg-wasm.js"
24
+ ],
23
25
  "scripts": {
24
26
  "build": "bun run clean && bun run build:wasm && bun run copy:wasm-to-dist && bun run build:ts",
25
27
  "build:ts": "vite build && pwd && tsc -p tsconfig.json",