mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2025-04-06 10:56:42 +00:00
Add sync directory to lint sources
This commit is contained in:
parent
59137f2baf
commit
3c546aa199
@ -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';
|
||||
|
||||
|
@ -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';
|
||||
|
@ -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();
|
||||
};
|
||||
};
|
||||
|
@ -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);
|
||||
});
|
||||
}
|
||||
|
||||
|
@ -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'),
|
||||
|
@ -32,6 +32,7 @@
|
||||
"src/**/*",
|
||||
"test/**/*",
|
||||
"typings/**/*.d.ts",
|
||||
"sync/**/*",
|
||||
"build-utils/**/*"
|
||||
]
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user