ac-file-extensions 2.0.13 → 2.0.14

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.
package/CHANGELOG.md CHANGED
@@ -1,4 +1,13 @@
1
1
 
2
+ ## [2.0.14](https://github.com/admiralcloud/ac-file-extensions/compare/v2.0.13..v2.0.14) (2025-10-17 07:07:24)
3
+
4
+
5
+ ### Bug Fix
6
+
7
+ * **App:** add step/dxf file extensions | VD | [a9dd73eb0fc08988e5be61b8c4c3aefd58b202a9](https://github.com/admiralcloud/ac-file-extensions/commit/a9dd73eb0fc08988e5be61b8c4c3aefd58b202a9)
8
+ add step/dxf file extensions
9
+ Related issues: [browse/master#master](https://admiralcloud.atlassian.net/browse/master)
10
+
2
11
  ## [2.0.13](https://github.com/admiralcloud/ac-file-extensions/compare/v2.0.12..v2.0.13) (2025-09-19 05:12:00)
3
12
 
4
13
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ac-file-extensions",
3
3
  "repository": "https://github.com/AdmiralCloud/ac-file-extensions",
4
- "version": "2.0.13",
4
+ "version": "2.0.14",
5
5
  "description": "Creates a list of file extensions and their \"real\" names",
6
6
  "main": "index.js",
7
7
  "scripts": {
@@ -18,7 +18,7 @@
18
18
  "lodash": "^4.17.21"
19
19
  },
20
20
  "devDependencies": {
21
- "eslint": "^9.35.0"
21
+ "eslint": "^9.37.0"
22
22
  },
23
23
  "packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
24
24
  }
package/sources/d.json CHANGED
@@ -68,5 +68,10 @@
68
68
  "ext": "dwg",
69
69
  "name": "Autodesk DWG Drawing",
70
70
  "mimetype": "image/vnd.dwg"
71
+ },
72
+ {
73
+ "ext": "dxf",
74
+ "name": "AutoCAD DXF file",
75
+ "mimetype": "application/dxf"
71
76
  }
72
77
  ]
package/sources/s.json CHANGED
@@ -143,5 +143,10 @@
143
143
  "ext": "srt",
144
144
  "name": "SubRipper Subtitle Information",
145
145
  "mimetype": "text/plain"
146
- }
146
+ },
147
+ {
148
+ "ext": "step",
149
+ "name": "3D model data",
150
+ "mimetype": "model/step"
151
+ }
147
152
  ]