mirror of
https://github.com/Mibew/simple-icons.git
synced 2024-11-17 10:54:12 +03:00
e0df400494
* Add prettier as a dependency * Add format command and configure prettier I opted for single quotes to be in line with other simple-icons projects I ignore the data file because changing its formatting is quite a bit of trouble for all open PRs. * Run prettier * Replace all functions by arrow functions * Move prettier configuration to config file Move it to a file so editors (and other software) can pick up on the configuration. I went with .js because (a) it allows for comments and (2) it seems most of the config files are in JavaScript already. * Add prettier --check when running npm run lint (This adds it to the CI as well) * Add husky and format changes before committing * Use object destructuring for imports consistently * Add shebang and fileoverview to jsonlint.js
48 lines
1.2 KiB
JavaScript
48 lines
1.2 KiB
JavaScript
#!/usr/bin/env node
|
|
/**
|
|
* @fileoverview
|
|
* Updates the CDN URLs in the README.md to match the major version in the
|
|
* NPM package manifest. Does nothing if the README.md is already up-to-date.
|
|
*/
|
|
|
|
const fs = require('fs');
|
|
const path = require('path');
|
|
|
|
const rootDir = path.resolve(__dirname, '..', '..');
|
|
const packageJsonFile = path.resolve(rootDir, 'package.json');
|
|
const readmeFile = path.resolve(rootDir, 'README.md');
|
|
|
|
const getMajorVersion = (semVerVersion) => {
|
|
const majorVersionAsString = semVerVersion.split('.')[0];
|
|
return parseInt(majorVersionAsString);
|
|
};
|
|
|
|
const getManifest = () => {
|
|
const manifestRaw = fs.readFileSync(packageJsonFile).toString();
|
|
return JSON.parse(manifestRaw);
|
|
};
|
|
|
|
const updateVersionInReadmeIfNecessary = (majorVersion) => {
|
|
let content = fs.readFileSync(readmeFile).toString();
|
|
|
|
content = content.replace(
|
|
/simple-icons@v[0-9]+/g,
|
|
`simple-icons@v${majorVersion}`,
|
|
);
|
|
|
|
fs.writeFileSync(readmeFile, content);
|
|
};
|
|
|
|
const main = () => {
|
|
try {
|
|
const manifest = getManifest();
|
|
const majorVersion = getMajorVersion(manifest.version);
|
|
updateVersionInReadmeIfNecessary(majorVersion);
|
|
} catch (error) {
|
|
console.error('Failed to update CDN version number:', error);
|
|
process.exit(1);
|
|
}
|
|
};
|
|
|
|
main();
|