ci: add prettier to ci

This commit is contained in:
billybonks 2024-02-06 16:26:04 +08:00 committed by Christopher Charbonneau Wells
parent 1694c6f670
commit e141492db7
1 changed files with 276 additions and 241 deletions

View File

@ -1,19 +1,19 @@
const gulp = require('gulp');
const gulp = require("gulp");
const all = require('gulp-all');
const concat = require('gulp-concat');
const del = require('del');
const es = require('child_process').execSync;
const flatten = require('gulp-flatten');
const fontello = require('gulp-fontello');
const minify = require('gulp-minify');
const removeSourcemaps = require('gulp-remove-sourcemaps');
const sass = require('gulp-sass')(require('sass'));
const sassGlob = require('gulp-sass-glob');
const styleLint = require('@ronilaukkarinen/gulp-stylelint');
const spawn = require('child_process').spawn;
const all = require("gulp-all");
const concat = require("gulp-concat");
const del = require("del");
const es = require("child_process").execSync;
const flatten = require("gulp-flatten");
const fontello = require("gulp-fontello");
const minify = require("gulp-minify");
const removeSourcemaps = require("gulp-remove-sourcemaps");
const sass = require("gulp-sass")(require("sass"));
const sassGlob = require("gulp-sass-glob");
const styleLint = require("@ronilaukkarinen/gulp-stylelint");
const spawn = require("child_process").spawn;
const config = require('./gulpfile.config.js');
const config = require("./gulpfile.config.js");
/**
* Spawns a command for pipenv.
@ -26,11 +26,31 @@ const config = require('./gulpfile.config.js');
* @private
*/
function _runInPipenv(command) {
command.unshift('run');
command.unshift("run");
command = command.concat(process.argv.splice(3));
return new Promise((resolve, reject) => {
spawn('pipenv', command, { stdio: 'inherit' })
.on('exit', function (code) {
spawn("pipenv", command, { stdio: "inherit" }).on("exit", function (code) {
if (code) {
reject();
}
resolve();
});
});
}
/**
* Run Command
*
* @param command
* Command and arguments.
*
* @returns {Promise<unknown>}
*
* @private
*/
function _runCommand(program, command) {
return new Promise((resolve, reject) => {
spawn(program, command, { stdio: "inherit" }).on("exit", function (code) {
if (code) {
reject();
}
@ -45,10 +65,7 @@ function _runInPipenv(command) {
* @returns {*}
*/
function clean() {
return del([
'**/static',
'static'
]);
return del(["**/static", "static"]);
}
/**
@ -58,35 +75,36 @@ function clean() {
*/
function coverage(cb) {
// Erase any previous coverage results.
es('pipenv run coverage erase', {stdio: 'inherit'});
es("pipenv run coverage erase", { stdio: "inherit" });
// Run tests with coverage.
spawn(
'pipenv',
"pipenv",
[
'run',
'coverage',
'run',
'manage.py',
'test',
'--settings=babybuddy.settings.test',
'--parallel',
'--exclude-tag',
'isolate'
"run",
"coverage",
"run",
"manage.py",
"test",
"--settings=babybuddy.settings.test",
"--parallel",
"--exclude-tag",
"isolate",
],
{
stdio: 'inherit'
}
).on('exit', function(code) {
stdio: "inherit",
},
).on("exit", function (code) {
// Run isolated tests with coverage.
if (code === 0) {
try {
config.testsConfig.isolated.forEach(function (test_name) {
es(
'pipenv run coverage run manage.py test --settings=babybuddy.settings.test ' + test_name,
{stdio: 'inherit'}
"pipenv run coverage run manage.py test --settings=babybuddy.settings.test " +
test_name,
{ stdio: "inherit" },
);
})
});
} catch (error) {
console.error(error);
cb();
@ -94,11 +112,11 @@ function coverage(cb) {
}
// Combine coverage results.
es('pipenv run coverage combine', {stdio: 'inherit'});
es("pipenv run coverage combine", { stdio: "inherit" });
}
cb();
process.exit(code)
process.exit(code);
});
}
@ -106,21 +124,21 @@ function coverage(cb) {
* Builds the documentation site locally.
*/
function docsBuild() {
return _runInPipenv(['mkdocs', 'build']);
return _runInPipenv(["mkdocs", "build"]);
}
/**
* Deploys the documentation site to GitHub Pages.
*/
function docsDeploy() {
return _runInPipenv(['mkdocs', 'gh-deploy']);
return _runInPipenv(["mkdocs", "gh-deploy"]);
}
/**
* Serves the documentation site, watching for changes.
*/
function docsWatch() {
return _runInPipenv(['mkdocs', 'serve']);
return _runInPipenv(["mkdocs", "serve"]);
}
/**
@ -128,16 +146,20 @@ function docsWatch() {
*/
function extras() {
return all(
gulp.src(config.extrasConfig.fonts.files)
gulp
.src(config.extrasConfig.fonts.files)
.pipe(gulp.dest(config.extrasConfig.fonts.dest)),
gulp.src(config.extrasConfig.images.files)
gulp
.src(config.extrasConfig.images.files)
.pipe(flatten({ subPath: 3 }))
.pipe(gulp.dest(config.extrasConfig.images.dest)),
gulp.src(config.extrasConfig.logo.files)
gulp
.src(config.extrasConfig.logo.files)
.pipe(flatten({ subPath: 3 }))
.pipe(gulp.dest(config.extrasConfig.logo.dest)),
gulp.src(config.extrasConfig.root.files)
.pipe(gulp.dest(config.extrasConfig.root.dest))
gulp
.src(config.extrasConfig.root.files)
.pipe(gulp.dest(config.extrasConfig.root.dest)),
);
}
@ -146,8 +168,8 @@ function extras() {
*/
function format() {
return all(
_runInPipenv(['black', '.']),
_runInPipenv(['djlint', '--reformat', '.']),
_runInPipenv(["black", "."]),
_runInPipenv(["djlint", "--reformat", "."]),
);
}
@ -156,12 +178,14 @@ function format() {
*/
function lint() {
return all(
_runInPipenv(['black', '.', '--check', '--diff', '--color']),
_runInPipenv([ 'djlint', '--check', '.']),
gulp.src(config.watchConfig.stylesGlob)
.pipe(styleLint({
reporters: [{ formatter: 'string', console: true }]
}))
_runInPipenv(["black", ".", "--check", "--diff", "--color"]),
_runInPipenv(["djlint", "--check", "."]),
_runCommand("npx", ["prettier", ".", "--check"]),
gulp.src(config.watchConfig.stylesGlob).pipe(
styleLint({
reporters: [{ formatter: "string", console: true }],
}),
),
);
}
@ -170,19 +194,22 @@ function lint() {
*/
function scripts() {
const streams = [];
const types = ['vendor', 'graph', 'app', 'tags_editor'];
const types = ["vendor", "graph", "app", "tags_editor"];
types.forEach((type) => {
streams.push(
gulp.src(config.scriptsConfig[type])
gulp
.src(config.scriptsConfig[type])
.pipe(removeSourcemaps())
.pipe(concat(`${type}.js`))
.pipe(minify({
ext: { min:'.js' },
.pipe(
minify({
ext: { min: ".js" },
noSource: true,
}))
.pipe(gulp.dest(config.scriptsConfig.dest))
}),
)
.pipe(gulp.dest(config.scriptsConfig.dest)),
);
})
});
return all(streams);
}
@ -190,10 +217,11 @@ function scripts() {
* Builds and copies CSS static files to configured paths.
*/
function styles() {
return gulp.src(config.stylesConfig.app)
.pipe(sassGlob({ignorePaths: config.stylesConfig.ignore}))
.pipe(sass().on('error', sass.logError))
.pipe(concat('app.css'))
return gulp
.src(config.stylesConfig.app)
.pipe(sassGlob({ ignorePaths: config.stylesConfig.ignore }))
.pipe(sass().on("error", sass.logError))
.pipe(concat("app.css"))
.pipe(gulp.dest(config.stylesConfig.dest));
}
@ -204,29 +232,33 @@ function styles() {
*/
function test(cb) {
let command = [
'run',
'python',
'-Wa',
'manage.py',
'test',
'--settings=babybuddy.settings.test',
'--parallel',
'--exclude-tag',
'isolate'
"run",
"python",
"-Wa",
"manage.py",
"test",
"--settings=babybuddy.settings.test",
"--parallel",
"--exclude-tag",
"isolate",
];
command = command.concat(process.argv.splice(3));
spawn('pipenv', command, { stdio: 'inherit' }).on('exit', function(code) {
spawn("pipenv", command, { stdio: "inherit" }).on("exit", function (code) {
if (code === 0) {
// Run isolated tests.
config.testsConfig.isolated.forEach(function(test_name) {
config.testsConfig.isolated.forEach(function (test_name) {
try {
es('pipenv run python manage.py test --settings=babybuddy.settings.test ' + test_name, {stdio: 'inherit'});
es(
"pipenv run python manage.py test --settings=babybuddy.settings.test " +
test_name,
{ stdio: "inherit" },
);
} catch (error) {
console.error(error);
cb();
process.exit(1);
}
})
});
}
cb();
process.exit(code);
@ -237,7 +269,8 @@ function test(cb) {
* Updates glyphs font data from Fontello.
*/
function updateGlyphs() {
return gulp.src(config.glyphFontConfig.configFile)
return gulp
.src(config.glyphFontConfig.configFile)
.pipe(fontello({ assetsOnly: false }))
.pipe(gulp.dest(config.glyphFontConfig.dest));
}
@ -254,52 +287,52 @@ function watch() {
* Django management command passthroughs.
*/
gulp.task('collectstatic', function(cb) {
let command = ['run', 'python', 'manage.py', 'collectstatic'];
gulp.task("collectstatic", function (cb) {
let command = ["run", "python", "manage.py", "collectstatic"];
/* Use base settings if no settings parameter is supplied. */
const parameters = process.argv.splice(3);
let noSettings = true;
for (let i = 0; i < parameters.length; i++) {
if (parameters[i].substring(0, 10) === '--settings') {
if (parameters[i].substring(0, 10) === "--settings") {
noSettings = false;
break;
}
}
if (noSettings) {
parameters.push('--settings=babybuddy.settings.base');
parameters.push("--settings=babybuddy.settings.base");
}
command = command.concat(parameters);
spawn('pipenv', command, { stdio: 'inherit' }).on('exit', cb);
spawn("pipenv", command, { stdio: "inherit" }).on("exit", cb);
});
gulp.task('compilemessages', () => {
return _runInPipenv(['python', 'manage.py', 'compilemessages']);
gulp.task("compilemessages", () => {
return _runInPipenv(["python", "manage.py", "compilemessages"]);
});
gulp.task('fake', () => {
return _runInPipenv(['python', 'manage.py', 'fake']);
gulp.task("fake", () => {
return _runInPipenv(["python", "manage.py", "fake"]);
});
gulp.task('migrate', () => {
return _runInPipenv(['python', 'manage.py', 'migrate']);
gulp.task("migrate", () => {
return _runInPipenv(["python", "manage.py", "migrate"]);
});
gulp.task('makemessages', () => {
return _runInPipenv(['python', 'manage.py', 'makemessages']);
gulp.task("makemessages", () => {
return _runInPipenv(["python", "manage.py", "makemessages"]);
});
gulp.task('makemigrations', () => {
return _runInPipenv(['python', 'manage.py', 'makemigrations']);
gulp.task("makemigrations", () => {
return _runInPipenv(["python", "manage.py", "makemigrations"]);
});
gulp.task('reset', () => {
return _runInPipenv(['python', 'manage.py', 'reset', '--no-input']);
gulp.task("reset", () => {
return _runInPipenv(["python", "manage.py", "reset", "--no-input"]);
});
gulp.task('runserver', function(cb) {
let command = ['run', 'python', 'manage.py', 'runserver'];
gulp.task("runserver", function (cb) {
let command = ["run", "python", "manage.py", "runserver"];
/**
* Process any parameters. Any arguments found here will be removed from
@ -309,14 +342,13 @@ gulp.task('runserver', function(cb) {
const parameters = process.argv.splice(2);
for (let i = 0; i < parameters.length; i++) {
/* May be included because this is the default gulp command. */
if (parameters[i] === 'runserver') {
if (parameters[i] === "runserver") {
delete parameters[i];
}
} else if (parameters[i] === "--ip") {
/* "--ip" parameter to set the server IP address. */
else if (parameters[i] === '--ip') {
command.push(parameters[i+1]);
command.push(parameters[i + 1]);
delete parameters[i];
delete parameters[i+1];
delete parameters[i + 1];
i++;
}
}
@ -324,18 +356,18 @@ gulp.task('runserver', function(cb) {
/* Add parameters to command, removing empty values. */
command = command.concat(parameters.filter(String));
spawn('pipenv', command, { stdio: 'inherit' }).on('exit', cb);
spawn("pipenv", command, { stdio: "inherit" }).on("exit", cb);
});
gulp.task('generateschema', () => {
gulp.task("generateschema", () => {
return _runInPipenv([
'python',
'manage.py',
'generateschema',
'--title',
'Baby Buddy API',
'--file',
'openapi-schema.yml'
"python",
"manage.py",
"generateschema",
"--title",
"Baby Buddy API",
"--file",
"openapi-schema.yml",
]);
});
@ -343,38 +375,41 @@ gulp.task('generateschema', () => {
* Gulp commands.
*/
gulp.task('clean', clean);
gulp.task("clean", clean);
gulp.task('coverage', coverage);
gulp.task("coverage", coverage);
gulp.task('docs:build', docsBuild);
gulp.task("docs:build", docsBuild);
gulp.task('docs:deploy', docsDeploy);
gulp.task("docs:deploy", docsDeploy);
gulp.task('docs:watch', docsWatch);
gulp.task("docs:watch", docsWatch);
gulp.task('extras', extras);
gulp.task("extras", extras);
gulp.task('format', format);
gulp.task("format", format);
gulp.task('lint', lint);
gulp.task("lint", lint);
gulp.task('scripts', scripts);
gulp.task("scripts", scripts);
gulp.task('styles', styles);
gulp.task("styles", styles);
gulp.task('test', test);
gulp.task("test", test);
gulp.task('updateglyphs', updateGlyphs);
gulp.task("updateglyphs", updateGlyphs);
gulp.task('watch', watch);
gulp.task("watch", watch);
/**
* Gulp compound commands.
*/
gulp.task('build', gulp.parallel('extras', 'scripts', 'styles'));
gulp.task("build", gulp.parallel("extras", "scripts", "styles"));
gulp.task('updatestatic', gulp.series('lint', 'clean', 'build', 'collectstatic'));
gulp.task(
"updatestatic",
gulp.series("lint", "clean", "build", "collectstatic"),
);
gulp.task('default', gulp.series('build', gulp.parallel('watch', 'runserver')));
gulp.task("default", gulp.series("build", gulp.parallel("watch", "runserver")));