Skip to content

Commit

Permalink
feat: add hand drive
Browse files Browse the repository at this point in the history
  • Loading branch information
Kikobeats committed Jun 8, 2024
1 parent 633cc6c commit c4e03cb
Show file tree
Hide file tree
Showing 6 changed files with 2,631 additions and 1,669 deletions.
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,11 @@
"simple-git-hooks": "latest",
"standard": "latest",
"standard-markdown": "latest",
"standard-version": "latest"
"standard-version": "latest",
"superlock": "latest"
},
"engines": {
"node": ">= 12"
"node": ">= 18"
},
"files": [
"src"
Expand Down
11 changes: 10 additions & 1 deletion src/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ const PAINT_CODES = [
'PR01'
]

const HAND_DRIVE = [
'DRLH', // Left Hand Drive
'DRRH' // Right Hand Drive
]

const M3_GENERIC_CODES = [
'MT3', // chasis
'W3', // wheels
Expand Down Expand Up @@ -106,7 +111,11 @@ module.exports = {
VIEW_ANGLES_V2,
M3_INTERIOR_CODES,
M3_NON_REFRESH,
M3_OPTIONS_CODES: M3_GENERIC_CODES.concat(PAINT_CODES, M3_INTERIOR_CODES),
M3_OPTIONS_CODES: M3_GENERIC_CODES.concat(
HAND_DRIVE,
PAINT_CODES,
M3_INTERIOR_CODES
),
MY_OPTIONS_CODES: MY_GENERIC_OPTIONS_CODES.concat(
PAINT_CODES,
MY_INTERIOR_CODES
Expand Down
Loading

0 comments on commit c4e03cb

Please sign in to comment.