Add sync directory to lint sources

This commit is contained in:
Felipe Lalanne 2024-03-05 15:14:37 -03:00
parent 59137f2baf
commit 3c546aa199
6 changed files with 17 additions and 17 deletions

View File

@ -1,11 +1,10 @@
import * as Docker from 'dockerode';
import { Dockerfile } from 'livepush';
import * as _ from 'lodash';
import Docker from 'dockerode';
import type { Dockerfile } from 'livepush';
import { Builder } from 'resin-docker-build';
import { promises as fs } from 'fs';
import * as Path from 'path';
import { Readable } from 'stream';
import type { Readable } from 'stream';
import * as tar from 'tar-stream';
import * as readline from 'readline';

View File

@ -1,5 +1,5 @@
import * as Docker from 'dockerode';
import { Dockerfile } from 'livepush';
import type Docker from 'dockerode';
import type { Dockerfile } from 'livepush';
import * as device from './device';
import { setTimeout } from 'timers/promises';

View File

@ -1,9 +1,10 @@
import * as chokidar from 'chokidar';
import * as Docker from 'dockerode';
import * as _ from 'lodash';
import * as Path from 'path';
import type Docker from 'dockerode';
import _ from 'lodash';
import Path from 'path';
import { Dockerfile, Livepush } from 'livepush';
import type { Dockerfile } from 'livepush';
import { Livepush } from 'livepush';
// TODO: Pass build args to the livepush process
export async function startLivepush(opts: {
@ -37,7 +38,7 @@ export async function startLivepush(opts: {
const livepushExecutor = getExecutor(livepush);
const watcher = chokidar
.watch('.', {
ignored: /((^|[\/\\])\..|(node_modules|sync|test)\/.*)/,
ignored: /((^|[/\\])\..|(node_modules|sync|test)\/.*)/,
ignoreInitial: opts.noinit,
})
.on('add', (path) => livepushExecutor(path))
@ -65,6 +66,6 @@ const getExecutor = (livepush: Livepush) => {
if (deleted) {
deletedFiles.push(deleted);
}
actualExecutor();
return actualExecutor();
};
};

View File

@ -1,5 +1,4 @@
import * as Docker from 'dockerode';
import * as _ from 'lodash';
import type Docker from 'dockerode';
export async function setupLogs(
docker: Docker,
@ -16,7 +15,7 @@ export async function setupLogs(
since: lastReadTimestamp,
});
stream.on('data', chunk => {
stream.on('data', (chunk) => {
const { message, timestamp } = extractMessage(chunk);
// Add one here, other we can end up constantly reading
// the same log line
@ -26,7 +25,7 @@ export async function setupLogs(
// This happens when a container is restarted
stream.on('end', () => {
setupLogs(docker, containerId, lastReadTimestamp);
void setupLogs(docker, containerId, lastReadTimestamp);
});
}

View File

@ -55,7 +55,7 @@ const argv = yargs
.scriptName('npm run sync --')
.alias('h', 'help').argv;
(async () => {
void (async () => {
const address = argv['device-address']!;
const dockerfile = new livepush.Dockerfile(
await fs.readFile('Dockerfile.template'),

View File

@ -32,6 +32,7 @@
"src/**/*",
"test/**/*",
"typings/**/*.d.ts",
"sync/**/*",
"build-utils/**/*"
]
}