@linkiez/dxf-renew 5.3.1 → 7.0.0

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.
@@ -1,3 +1,6 @@
1
+ ---
2
+ applyTo: '**'
3
+ ---
1
4
  # Code Patterns & Best Practices
2
5
 
3
6
  This document codifies the current implementation patterns used in DXF-Renewed, plus recommended best practices for new contributions.
@@ -73,6 +73,10 @@ jobs:
73
73
  uses: actions/setup-node@v4
74
74
  with:
75
75
  node-version: 22.x
76
+ registry-url: https://registry.npmjs.org
77
+
78
+ - name: Upgrade npm (Trusted Publishers)
79
+ run: npm i -g npm@^11.5.1
76
80
 
77
81
  - name: Enable Corepack
78
82
  run: corepack enable
@@ -95,11 +99,6 @@ jobs:
95
99
  - name: Build
96
100
  run: yarn build
97
101
 
98
- - name: Create tarball for GitHub release
99
- run: |
100
- mkdir -p dist
101
- yarn pack --out dist/%s-%v.tgz
102
-
103
102
  - name: Release
104
103
  env:
105
104
  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
package/.releaserc.json CHANGED
@@ -47,7 +47,7 @@
47
47
  [
48
48
  "@semantic-release/npm",
49
49
  {
50
- "npmPublish": false,
50
+ "npmPublish": true,
51
51
  "tarballDir": "dist"
52
52
  }
53
53
  ],
Binary file
package/CHANGELOG.md CHANGED
@@ -1,5 +1,41 @@
1
1
  # Changelog
2
2
 
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/).
7
+
8
+ ## 7.0.0 (2025-12-31)
9
+
10
+ * fix: consolidar tipos ParsedDXF e corrigir incompatibilidades ([804c485](https://github.com/linkiez/DXF-Renewed/commit/804c485))
11
+ * fix: tipar handlers e entidades no parseEntities ([a364044](https://github.com/linkiez/DXF-Renewed/commit/a364044))
12
+ * fix(ci): enable corepack for yarn 4 support in github actions ([59048b9](https://github.com/linkiez/DXF-Renewed/commit/59048b9))
13
+ * fix(ci): remove yarn cache from setup-node to enable corepack first ([ba3186c](https://github.com/linkiez/DXF-Renewed/commit/ba3186c))
14
+ * fix(ci): skip eslint temporarily - babel parser incompatible with ts+esm ([37276c4](https://github.com/linkiez/DXF-Renewed/commit/37276c4))
15
+ * fix(ci): use node 22.x for semantic-release v25 compatibility ([c20e69b](https://github.com/linkiez/DXF-Renewed/commit/c20e69b))
16
+ * fix(release): simplify to use only main branch for releases ([705b77d](https://github.com/linkiez/DXF-Renewed/commit/705b77d))
17
+ * fix(release): use https repository URL ([77e9a17](https://github.com/linkiez/DXF-Renewed/commit/77e9a17))
18
+ * chore: sync package and release configuration ([e391038](https://github.com/linkiez/DXF-Renewed/commit/e391038))
19
+ * chore: update yarn.lock ([6a7fb91](https://github.com/linkiez/DXF-Renewed/commit/6a7fb91))
20
+ * docs: add warning about development status to README ([def8658](https://github.com/linkiez/DXF-Renewed/commit/def8658))
21
+ * feat: adicionar tipos para entidades hatch, viewport e ole2frame ([e1c7b8f](https://github.com/linkiez/DXF-Renewed/commit/e1c7b8f))
22
+ * feat: implement DIMENSION rendering with DIMSTYLE support (Phases 1 and 2) ([37b7e62](https://github.com/linkiez/DXF-Renewed/commit/37b7e62))
23
+ * feat: implement Phase 3 - advanced DIMENSION rendering with arrows and extension lines ([02ff584](https://github.com/linkiez/DXF-Renewed/commit/02ff584))
24
+ * feat: implement semantic-release and translate project to en_US ([e5b880d](https://github.com/linkiez/DXF-Renewed/commit/e5b880d))
25
+ * feat(lint): add typescript eslint support and fix lint errors ([df13e74](https://github.com/linkiez/DXF-Renewed/commit/df13e74))
26
+ * refactor: consolidar ColorRGB type em types/common ([4a0bd43](https://github.com/linkiez/DXF-Renewed/commit/4a0bd43))
27
+ * refactor: consolidar types e interfaces em src/types/ ([604aa5c](https://github.com/linkiez/DXF-Renewed/commit/604aa5c))
28
+ * refactor: eliminar interfaces duplicadas de arquivos principais ([3429635](https://github.com/linkiez/DXF-Renewed/commit/3429635))
29
+ * refactor: remover extrusionZ duplicado de InsertEntity ([3a1fcfd](https://github.com/linkiez/DXF-Renewed/commit/3a1fcfd))
30
+ * refactor: simplificar types com extends pattern ([ea08247](https://github.com/linkiez/DXF-Renewed/commit/ea08247))
31
+
32
+
33
+ ### BREAKING CHANGE
34
+
35
+ * All commits must now follow Conventional Commits format in English
36
+
37
+ # Changelog
38
+
3
39
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
40
 
5
41
  ### [5.3.1](https://github.com/skymakerolof/dxf/compare/v5.3.0...v5.3.1) (2025-09-01)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@linkiez/dxf-renew",
3
- "version": "5.3.1",
3
+ "version": "7.0.0",
4
4
  "description": "DXF parser for node/browser",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -41,7 +41,11 @@
41
41
  },
42
42
  "repository": {
43
43
  "type": "git",
44
- "url": "git://github.com/skymakerolof/dxf.git"
44
+ "url": "https://github.com/linkiez/DXF-Renewed.git"
45
+ },
46
+ "publishConfig": {
47
+ "access": "public",
48
+ "provenance": true
45
49
  },
46
50
  "keywords": [
47
51
  "DXF",
@@ -51,9 +55,9 @@
51
55
  "author": "Ben Nortier <ben@bjnortier.com>",
52
56
  "license": "MIT",
53
57
  "bugs": {
54
- "url": "https://github.com/skymakerolof/dxf/issues"
58
+ "url": "https://github.com/linkiez/DXF-Renewed/issues"
55
59
  },
56
- "homepage": "https://github.com/skymakerolof/dxf",
60
+ "homepage": "https://github.com/linkiez/DXF-Renewed",
57
61
  "devDependencies": {
58
62
  "@babel/core": "^7.28.5",
59
63
  "@babel/eslint-parser": "^7.25.1",