refactor: Restructure mounting and PCB data into modular files, adding new armpitmfg options and updating data references.

This commit is contained in:
MunchDev-oss
2026-01-07 02:55:45 -05:00
parent 5366865b4b
commit 004fcc59df
13 changed files with 407 additions and 428 deletions

View File

@@ -0,0 +1,13 @@
import ossm from './ossm.json';
import armpitmfg from './armpitmfg.json';
export default {
"mounting": {
"category": "Mounting",
"type": "base",
"systems": {
...ossm,
...armpitmfg
}
}
};