Opt-in config to Prettier

This commit is contained in:
Nick Schonning 2024-02-28 17:02:14 -05:00
parent 7f84bbfd92
commit 4c1710551e
No known key found for this signature in database
GPG Key ID: 5DDAAD9C9AAFFD9F
7 changed files with 46 additions and 38 deletions

View File

@ -83,3 +83,4 @@ AUTHORS.md
# Process a few selected JS files # Process a few selected JS files
!lint-staged.config.js !lint-staged.config.js
!/config/**/*.js

View File

@ -1,6 +1,8 @@
const path = require('path'); const path = require('path');
const currentTranslations = require(path.join(__dirname, "../app/javascript/mastodon/locales/en.json")); const currentTranslations = require(
path.join(__dirname, '../app/javascript/mastodon/locales/en.json'),
);
exports.format = (msgs) => { exports.format = (msgs) => {
const results = {}; const results = {};

View File

@ -7,7 +7,9 @@ const { env } = require('process');
const { load } = require('js-yaml'); const { load } = require('js-yaml');
const configPath = resolve('config', 'webpacker.yml'); const configPath = resolve('config', 'webpacker.yml');
const settings = load(readFileSync(configPath), 'utf8')[env.RAILS_ENV || env.NODE_ENV]; const settings = load(readFileSync(configPath), 'utf8')[
env.RAILS_ENV || env.NODE_ENV
];
const themePath = resolve('config', 'themes.yml'); const themePath = resolve('config', 'themes.yml');
const themes = load(readFileSync(themePath), 'utf8'); const themes = load(readFileSync(themePath), 'utf8');

View File

@ -57,6 +57,6 @@ module.exports = merge(sharedConfig, {
settings.dev_server.watch_options, settings.dev_server.watch_options,
watchOptions, watchOptions,
), ),
writeToDisk: filePath => /ocr/.test(filePath), writeToDisk: (filePath) => /ocr/.test(filePath),
}, },
}); });

View File

@ -42,24 +42,27 @@ module.exports = merge(sharedConfig, {
cache: true, cache: true,
test: /\.(js|css|html|json|ico|svg|eot|otf|ttf|map)$/, test: /\.(js|css|html|json|ico|svg|eot|otf|ttf|map)$/,
}), }),
new BundleAnalyzerPlugin({ // generates report.html new BundleAnalyzerPlugin({
// generates report.html
analyzerMode: 'static', analyzerMode: 'static',
openAnalyzer: false, openAnalyzer: false,
logLevel: 'silent', // do not bother Webpacker, who runs with --json and parses stdout logLevel: 'silent', // do not bother Webpacker, who runs with --json and parses stdout
}), }),
new InjectManifest({ new InjectManifest({
additionalManifestEntries: ['1f602.svg', 'sheet_13.png'].map((filename) => { additionalManifestEntries: ['1f602.svg', 'sheet_13.png'].map(
const path = resolve(root, 'public', 'emoji', filename); (filename) => {
const body = readFileSync(path); const path = resolve(root, 'public', 'emoji', filename);
const md5 = createHash('md5'); const body = readFileSync(path);
const md5 = createHash('md5');
md5.update(body); md5.update(body);
return { return {
revision: md5.digest('hex'), revision: md5.digest('hex'),
url: `/emoji/${filename}`, url: `/emoji/${filename}`,
}; };
}), },
),
exclude: [ exclude: [
/(?:base|extra)_polyfills-.*\.js$/, /(?:base|extra)_polyfills-.*\.js$/,
/locale_.*\.js$/, /locale_.*\.js$/,
@ -68,7 +71,14 @@ module.exports = merge(sharedConfig, {
include: [/\.js$/, /\.css$/], include: [/\.js$/, /\.css$/],
maximumFileSizeToCacheInBytes: 2 * 1_024 * 1_024, // 2 MiB maximumFileSizeToCacheInBytes: 2 * 1_024 * 1_024, // 2 MiB
swDest: resolve(root, 'public', 'packs', 'sw.js'), swDest: resolve(root, 'public', 'packs', 'sw.js'),
swSrc: resolve(root, 'app', 'javascript', 'mastodon', 'service_worker', 'entry.js'), swSrc: resolve(
root,
'app',
'javascript',
'mastodon',
'service_worker',
'entry.js',
),
}), }),
], ],
}); });

View File

@ -7,13 +7,10 @@ module.exports = {
include: [ include: [
settings.source_path, settings.source_path,
...settings.resolved_paths, ...settings.resolved_paths,
'node_modules/@reduxjs' 'node_modules/@reduxjs',
].map(p => resolve(p)), ].map((p) => resolve(p)),
exclude: function(modulePath) { exclude: function (modulePath) {
return ( return /node_modules/.test(modulePath) && !/@reduxjs/.test(modulePath);
/node_modules/.test(modulePath) &&
!/@reduxjs/.test(modulePath)
);
}, },
use: [ use: [
{ {

View File

@ -21,7 +21,8 @@ module.exports = {
packPaths.reduce((map, entry) => { packPaths.reduce((map, entry) => {
const localMap = map; const localMap = map;
const namespace = relative(join(entryPath), dirname(entry)); const namespace = relative(join(entryPath), dirname(entry));
localMap[join(namespace, basename(entry, extname(entry)))] = resolve(entry); localMap[join(namespace, basename(entry, extname(entry)))] =
resolve(entry);
return localMap; return localMap;
}, {}), }, {}),
Object.keys(themes).reduce((themePaths, name) => { Object.keys(themes).reduce((themePaths, name) => {
@ -61,19 +62,17 @@ module.exports = {
}, },
module: { module: {
rules: Object.keys(rules).map(key => rules[key]), rules: Object.keys(rules).map((key) => rules[key]),
strictExportPresence: true, strictExportPresence: true,
}, },
plugins: [ plugins: [
new webpack.EnvironmentPlugin(JSON.parse(JSON.stringify(env))), new webpack.EnvironmentPlugin(JSON.parse(JSON.stringify(env))),
new webpack.NormalModuleReplacementPlugin( new webpack.NormalModuleReplacementPlugin(/^history\//, (resource) => {
/^history\//, (resource) => { // temporary fix for https://github.com/ReactTraining/react-router/issues/5576
// temporary fix for https://github.com/ReactTraining/react-router/issues/5576 // to reduce bundle size
// to reduce bundle size resource.request = resource.request.replace(/^history/, 'history/es');
resource.request = resource.request.replace(/^history/, 'history/es'); }),
},
),
new MiniCssExtractPlugin({ new MiniCssExtractPlugin({
filename: 'css/[name]-[contenthash:8].css', filename: 'css/[name]-[contenthash:8].css',
chunkFilename: 'css/[name]-[contenthash:8].chunk.css', chunkFilename: 'css/[name]-[contenthash:8].chunk.css',
@ -87,18 +86,15 @@ module.exports = {
}), }),
new CircularDependencyPlugin({ new CircularDependencyPlugin({
failOnError: true, failOnError: true,
}) }),
], ],
resolve: { resolve: {
extensions: settings.extensions, extensions: settings.extensions,
modules: [ modules: [resolve(settings.source_path), 'node_modules'],
resolve(settings.source_path),
'node_modules',
],
alias: { alias: {
"@": resolve(settings.source_path), '@': resolve(settings.source_path),
} },
}, },
resolveLoader: { resolveLoader: {