-
- Downloads
feat: Update dependencies and improve Updater class structure
Summary of changes - Added `prettier` as a devDependency in both `package.json` and `package-lock.json` to maintain code formatting standards. - Reorganized import statements in `updater.mjs` for better readability and consistency. - Enhanced the Updater class methods by refining spaces and indentation for improved code clarity. - Introduced a new helper function `parseIntArray` for parsing integer arrays, cleaning up `retrieveAndSetValue` function. Changes - Updated `package.json` and `package-lock.json` to include the latest version of `prettier`. - Reformatted multiple sections in `updater.mjs` to adhere to a consistent style, making future edits easier and reducing visual clutter. - Improved logic readability in `retrieveAndSetValue` by delegating array parsing to the new `parseIntArray` function.
... | ... | @@ -45,7 +45,6 @@ |
}, | ||
"devDependencies": { | ||
"@biomejs/biome": "2.0.6", | ||
"buffer": "^6.0.3", | ||
"@esbuild-plugins/node-modules-polyfill": "^0.2.2", | ||
"@peculiar/webcrypto": "^1.5.0", | ||
"@playwright/test": "^1.53.2", | ||
... | ... | @@ -53,6 +52,7 @@ |
"autoprefixer": "^10.4.21", | ||
"browserslist": "^4.25.1", | ||
"btoa": "^1.2.1", | ||
"buffer": "^6.0.3", | ||
"c8": "^10.1.3", | ||
"chai": "^5.2.0", | ||
"chai-dom": "^1.12.1", | ||
... | ... | @@ -83,6 +83,7 @@ |
"postcss-responsive-type": "^1.0.0", | ||
"postcss-rtlcss": "^5.7.1", | ||
"postcss-strip-units": "^2.0.1", | ||
"prettier": "^3.6.2", | ||
"puppeteer": "^24.11.2", | ||
"sinon": "^21.0.0", | ||
"turbowatch": "^2.29.4", | ||
... | ... |
Please register or sign in to comment